Re: [問題] 九九乘法表不用迴圈是叫我直接從1列到81?
看板C_and_CPP (C/C++)作者nobodycares (沒人在乎)時間6年前 (2018/07/22 16:44)推噓2(3推 1噓 1→)留言5則, 4人參與討論串15/29 (看更多)
搞不好人家只是要你用stl跟c++11而已
#include <iostream>
#include <algorithm>
#include <vector>
#include <cstdint>
int main() {
std::vector<int> one_to_nine(9);
int i = 1;
std::for_each(one_to_nine.begin(), one_to_nine.end(),
[&i](int& n) { n = i++; }
);
auto l = [&one_to_nine](int j) {
std::for_each(one_to_nine.begin(), one_to_nine.end(),
[&one_to_nine, j](const int i) {
std::cout << i << " x " << j << " = " << i * j << " ";
});
};
std::for_each(one_to_nine.begin(), one_to_nine.end(),
[&i, &l](int& n) {
l(n);
std::cout << std::endl;
});
return 0;
}
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 123.50.60.32
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1532249065.A.F8C.html
噓
07/22 17:10,
6年前
, 1F
07/22 17:10, 1F
推
07/22 17:15,
6年前
, 2F
07/22 17:15, 2F
推
07/22 18:57,
6年前
, 3F
07/22 18:57, 3F
→
07/22 18:57,
6年前
, 4F
07/22 18:57, 4F
推
07/22 19:06,
6年前
, 5F
07/22 19:06, 5F
討論串 (同標題文章)
完整討論串 (本文為第 15 之 29 篇):
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章