#include <stdio.h>
#include <locale.h>
int main()
{
setlocale(LC_ALL, "Rus");
int _count = 0;
double x, _sum = 0;
do {
scanf("%lf", &x);
_count++;
_sum += x;
} while (x != 0);
_count--;
printf("Количество чисел: %d\nСумма чисел: %lf\nСреднее арифметическое чисел: %lf", _count, _sum, _sum / _count);
return 0;
}
Відповідь:
#include<stdio.h>
#include<locale.h>
int main(){
setlocale(0,"");
unsigned int inc=0;double summa=0,enter;
scanf("%lf",&enter);
while(enter!=0){
inc++;
summa+=enter;
printf("Количество чисел: %i\nСумма: %lf\nСреднее арифметическое: %lf",inc,summa,summa/inc);
return 0;}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <stdio.h>
#include <locale.h>
int main()
{
setlocale(LC_ALL, "Rus");
int _count = 0;
double x, _sum = 0;
do {
scanf("%lf", &x);
_count++;
_sum += x;
} while (x != 0);
_count--;
printf("Количество чисел: %d\nСумма чисел: %lf\nСреднее арифметическое чисел: %lf", _count, _sum, _sum / _count);
return 0;
}
Відповідь:
#include<stdio.h>
#include<locale.h>
int main(){
setlocale(0,"");
unsigned int inc=0;double summa=0,enter;
scanf("%lf",&enter);
while(enter!=0){
inc++;
summa+=enter;
scanf("%lf",&enter);
}
printf("Количество чисел: %i\nСумма: %lf\nСреднее арифметическое: %lf",inc,summa,summa/inc);
return 0;}