返回列表 發帖

708 其他論題

本帖最後由 李泳霖 於 2022-6-6 17:28 編輯

https://icodding.blogspot.com/2018/05/c-define.html
設計說明:
1.生產20個 1~100的亂數,輸出時以5列4行輸出。
2. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. #define random(x) rand()%x

  5. int main()
  6. {
  7.         int i, j;
  8.         int x;
  9.         printf("隨機數的最大值為: ");
  10.         scanf("%d", &x);
  11.         for (i=1; i<5; i++) {
  12.                 for (j=1; j<4; j++) {
  13.                         printf("%5d ", random(x));
  14.                 }
  15.                 printf("\n");
  16.         }
  17.         system("PAUSE");
  18.         return 0;
  19. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表