首頁 > 後端開發 > C++ > 如何使用C程式中的檔案計算0到100之間隨機數的總和?

如何使用C程式中的檔案計算0到100之間隨機數的總和?

PHPz
發布: 2023-08-28 18:41:06
轉載
1585 人瀏覽過

如何使用C程式中的檔案計算0到100之間隨機數的總和?

在這個程式中,我們加入了 0 到 100 之間產生的隨機數。

每次運行後,隨機數總和的結果都是不同的,即,我們得到不同的結果每次執行。

我們用來計算 0 到 100 之間的隨機數總和的邏輯是 -

for(i = 0; i <=99; i++){
   // Storing random numbers in an array.
   num[i] = rand() % 100 + 1;
   // calculating the sum of the random numbers.
   sum+= num[i];
}
登入後複製

首先,我們計算隨機數的總和並將該總和儲存在檔案中。對於 write open 中開啟的文件,並使用 fprintf 將總和附加到數組檔案。

fprintf(fptr, "Total sum of the array is %d</p><p>", sum);
//appending sum to the array file.
登入後複製

範例

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define max 100
// Declaring the main function in the main header.
int main(void){
   srand(time(0));
   int i;
   int sum = 0, num[max];
   FILE *fptr;
   // Declaring the loop to generate 100 random numbers
   for(i = 0; i <=99; i++){
      // Storing random numbers in an array.
      num[i] = rand() % 100 + 1;
      // calculating the sum of the random numbers.
      sum+= num[i];
   }
   // intializing the file node with the right node.
   fptr = fopen("numbers.txt", "w");
   // cheching if the file pointer is null, check if we are going to exit or not.
   if(fptr == NULL){
      printf("Error!");
      exit(1);
   }
   fprintf(fptr, "Total sum of the array is %d</p><p>", sum); // appending sum to the array file.
   fclose(fptr); // closing the file pointer
}
登入後複製

輸出

Run 1: Total sum of the array is 5224
Run 2: Total sum of the array is 5555
Note: after executing a text file is created in the same folder with number.txt
We have to open it; there we can see the sum of random numbers.
登入後複製

以上是如何使用C程式中的檔案計算0到100之間隨機數的總和?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板