Re: [问题] 九九乘法表不用循环是叫我直接从1列到81?

楼主: holydc (のヮの)   2018-07-16 22:48:11
※ 引述《red0whale (red whale)》之铭言:
: 刚才做题目,
: https://i.imgur.com/NI4TYj5.jpg
: 九九乘法表用两个或一个循环来做我都会
: 但不用循环叫我列九九乘法表是哪招?
: 难道是要我直接从1*1列到9*9吗?
: 还是其实有妙招?
: 说实在我真想不到不用循环就能简单列出九九乘法表的方法了
我觉得这题要求用 C 真的比较困难,C++ 的话可以轻松很多
大概像这样 https://ideone.com/Yb0TqG
#include <iomanip>
#include <iostream>
template<int...> struct IntegerSequence {
};
template<int n, class = IntegerSequence<>, bool = n == 0>
struct MakeIntegerSequenceImpl;
template<int n, int... i>
struct MakeIntegerSequenceImpl<n, IntegerSequence<i...>, true> {
typedef IntegerSequence<i...> type;
};
template<int n, int... i>
struct MakeIntegerSequenceImpl<n, IntegerSequence<i...>, false> {
typedef typename MakeIntegerSequenceImpl<
n - 1, IntegerSequence<n - 1, i...>>::type type;
};
template<int n>
using MakeIntegerSequence = typename MakeIntegerSequenceImpl<n>::type;
template<int n>
struct MultiplicationTableCell {
static constexpr int value = ((n / 9) + 1) * ((n % 9) + 1);
};
template<class> struct MultiplicationTableImpl;
template<int... n>
struct MultiplicationTableImpl<IntegerSequence<n...>> {
static const int value[];
};
template<int... n>
const int MultiplicationTableImpl<IntegerSequence<n...>>::value[] = {
MultiplicationTableCell<n>::value...
};
struct MultiplicationTable :
MultiplicationTableImpl<MakeIntegerSequence<81>> {
static void print_twoLoops() {
for (int i = 0; i < 9; ++i) {
for (int j = 0; j < 9; ++j) {
std::cout << std::setw(2) << value[(i * 9) + j] << ',';
}
std::cout << std::endl;
}
}
static void print_oneLoop() {
for (int i = 0; i < 81; ++i) {
std::cout << std::setw(2) << value[i] << ',';
if ((i % 9) == 8) {
std::cout << std::endl;
}
}
}
static void print_noLoop_twoArgs(int i = 0, int j = 0) {
if (i == 9) {
return;
}
if (j == 9) {
std::cout << std::endl;
return print_noLoop_twoArgs(i + 1, 0);
}
std::cout << std::setw(2) << value[(i * 9) + j] << ',';
print_noLoop_twoArgs(i, j + 1);
}
static void print_noLoop_oneArg(int i = 0) {
if (i == 81) {
return;
}
std::cout << std::setw(2) << value[i] << ',';
if ((i % 9) == 8) {
std::cout << std::endl;
}
print_noLoop_oneArg(i + 1);
}
};
int main() {
std::cout << "Use 'two' for loops:" << std::endl;
MultiplicationTable::print_twoLoops();
std::cout << std::endl;
std::cout << "Use 'only one' for loop:" << std::endl;
MultiplicationTable::print_oneLoop();
std::cout << std::endl;
std::cout << "Use 'no loops' (two arguments):" << std::endl;
MultiplicationTable::print_noLoop_twoArgs();
std::cout << std::endl;
std::cout << "Use 'no loops' (one argument):" << std::endl;
MultiplicationTable::print_noLoop_oneArg();
return 0;
}
作者: school4303 (某爬虫类)   2018-07-16 23:57:00
有吗XDD
作者: sarafciel (Cattuz)   2018-07-17 00:02:00
终于连TMP都出现了XD
作者: oToToT (屁孩)   2018-07-17 13:05:00
有想过www
作者: loveflames (咕啾咕啾魔法阵)   2018-07-17 13:18:00
看有没有人要用preprocessor写,我确定可以
作者: cutekid (可爱小孩子)   2018-07-17 13:25:00
2楼有写macro版本

Links booklink

Contact Us: admin [ a t ] ucptt.com