討論串[問題] 九九乘法表不用迴圈是叫我直接從1列到81?
共 29 篇文章
內容預覽:
http://coliru.stacked-crooked.com/a/fba5b7b3b253288d. #include <iostream>. #include <string>. struct table {. std::string s;. table() {}. ~table() { s
(還有3737個字)
內容預覽:
聽說 C 比較難寫,一下子想不到什麼好的 macro 作法,只好這樣攤開來. /* https://ideone.com/yKNrXd */. #define eval(x,y) { printf("%2d x %2d = %2d\n",(x),(y),(x)*(y)); }. #define ev
(還有347個字)
內容預覽:
也是recursive版本,不過邏輯比較好懂XD. #include <stdio.h>. void nine(int i, int j). {. if (i < 10). {. if (j < 10). {. printf("%d * %d = %2d \n", i, j, i*j);. nine
(還有69個字)
內容預覽:
這一個版本.. 我只能確定 it works on my machine....XD (x86_64). 99.c:. #include <stdio.h>. long long salon(long long hair, int i){. if( i < 1 ) hair = 2[&hair];.
(還有1188個字)