討論串[問題] 九九乘法表不用迴圈是叫我直接從1列到81?
共 29 篇文章

推噓6(6推 0噓 3→)留言9則,0人參與, 6年前最新作者PkmX (阿貓)時間6年前 (2018/07/17 04:49), 編輯資訊
0
0
2
內容預覽:
http://coliru.stacked-crooked.com/a/fba5b7b3b253288d. #include <iostream>. #include <string>. struct table {. std::string s;. table() {}. ~table() { s
(還有3737個字)

推噓3(3推 0噓 2→)留言5則,0人參與, 6年前最新作者Schottky (順風相送)時間6年前 (2018/07/17 17:21), 編輯資訊
0
0
1
內容預覽:
聽說 C 比較難寫,一下子想不到什麼好的 macro 作法,只好這樣攤開來. /* https://ideone.com/yKNrXd */. #define eval(x,y) { printf("%2d x %2d = %2d\n",(x),(y),(x)*(y)); }. #define ev
(還有347個字)

推噓5(5推 0噓 1→)留言6則,0人參與, 6年前最新作者GZ79時間6年前 (2018/07/18 02:59), 編輯資訊
0
0
0
內容預覽:
也是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個字)

推噓4(4推 0噓 5→)留言9則,0人參與, 6年前最新作者CindyLinz (Cindy Wang)時間6年前 (2018/07/18 03:16), 編輯資訊
0
1
0
內容預覽:
這一個版本.. 我只能確定 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個字)

推噓3(3推 0噓 1→)留言4則,0人參與, 6年前最新作者sarafciel (Cattuz)時間6年前 (2018/07/18 07:31), 編輯資訊
0
0
1
內容預覽:
https://ideone.com/l1QdVT. 我覺得C真的蠻難寫99乘法表的. 不要說迴圈 我連if要怎麼用都不會QQ. --. 發信站: 批踢踢實業坊(ptt.cc), 來自: 123.193.54.11. 文章網址: https://www.ptt.cc/bbs/C_and_CP