討論串[問題] 九九乘法表不用迴圈是叫我直接從1列到81?
共 29 篇文章
內容預覽:
https://ideone.com/oPIC66. 用 C PreProcessor 寫的,理論上調整 EVAL 的數量的話,. 應該可以支援任意的 NxN 乘法表,沒有真的試過。. 我只有試過 #define END (9, 9) 的話,可以印出 98 * 98 ,大概要編譯 1 分半....
(還有106個字)
內容預覽:
不用 iteration,就用 recursion,順便預測出題者還不准你用乘法操作。. 這裡提供一份實作程式碼:. #include <stdio.h>. int mul(int x, int y) {. if (!x || !y) return 0;. return x + mul(x, y -
(還有727個字)
內容預覽:
獻醜一下..... 稍微試著解決重複加法的問題. #include <stdio.h>. void func(int x,int y,int z) {. printf("%d x %d = %2d%s",x,y,z,((y==9)?"\n":" "));. if ( y == 9 && x < 9
(還有113個字)
內容預覽:
搞不好人家只是要你用stl跟c++11而已. #include <iostream>. #include <algorithm>. #include <vector>. #include <cstdint>. int main() {. std::vector<int> one_to_nine(9)
(還有496個字)