このプログラムでは、生成された 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 で開かれたファイルの場合は、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 中国語 Web サイトの他の関連記事を参照してください。