> 백엔드 개발 > C++ > 본문

C 프로그래밍에서 파일을 사용하여 0에서 100 사이의 난수 합계를 계산하는 방법은 무엇입니까?

PHPz
풀어 주다: 2023-08-28 18:41:06
앞으로
1533명이 탐색했습니다.

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];
}
로그인 후 복사

입니다. 먼저 난수의 합을 계산하고 그 합을 파일에 저장합니다. 쓰기 열기로 열린 파일의 경우 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으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!