Computer >> Máy Tính >  >> Lập trình >> lập trình C

Làm thế nào để tính tổng các số ngẫu nhiên trong khoảng từ 0 đến 100 bằng cách sử dụng các tệp trong Lập trình C?

Trong chương trình này, chúng tôi sẽ thêm các số ngẫu nhiên được tạo trong khoảng từ 0 đến 100.

Sau mỗi thời gian chạy, kết quả của tổng các số ngẫu nhiên khác nhau, tức là chúng tôi nhận được một kết quả khác cho mỗi lần thực thi.

Logic chúng tôi sử dụng để tính tổng các số ngẫu nhiên trong khoảng từ 0 đến 100 là -

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];
}

Đầu tiên, chúng tôi tính tổng các số ngẫu nhiên và lưu trữ tổng đó trong một tệp. Đối với tệp đang mở đó, hãy mở và nối tổng vào tệp mảng bằng fprintf.

fprintf(fptr, "Total sum of the array is %d\n", sum);
//appending sum to the array file.

Ví dụ

#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\n", sum); // appending sum to the array file.
   fclose(fptr); // closing the file pointer
}

Đầu ra

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.