標題:
708 其他論題
[打印本頁]
作者:
李泳霖
時間:
2022-6-6 13:14
標題:
708 其他論題
本帖最後由 李泳霖 於 2022-6-6 17:28 編輯
https://icodding.blogspot.com/2018/05/c-define.html
設計說明:
1.生產20個 1~100的亂數,輸出時以5列4行輸出。
2. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
[attach]13204[/attach]
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define random(x) rand()%x
int main()
{
int i, j;
int x;
printf("隨機數的最大值為: ");
scanf("%d", &x);
for (i=1; i<5; i++) {
for (j=1; j<4; j++) {
printf("%5d ", random(x));
}
printf("\n");
}
system("PAUSE");
return 0;
}
複製代碼
作者:
李泳霖
時間:
2022-6-6 13:14
此帖僅作者可見
作者:
鄭程富
時間:
2022-6-6 17:30
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2