Anonymous Anonymous Author
Title: tính trung bình cộng và trung bình nhân các số nguyên
Author: Anonymous
Rating 5 of 5 Des:
Bài Giải ‪#‎include‬ <stdio.h> #include <conio.h> #include <math.h> int main () { int n; float AS,AM,a; int s=0; fl...
Bài Giải
‪#‎include‬ <stdio.h>
#include <conio.h>
#include <math.h>
int main ()
{
int n;
float AS,AM,a;
int s=0;
float m=1;
printf("Nhap n: ");
scanf("%d",&n);
int i=0;
while(i<=n)
{
s=s+i;
i++;
}
AS=float (s*1.0)/n;
printf("Trung Binh Cong la : %.2f",AS);
int j=1;
while(j<=n)
{
m=m*i;// sao lại nhân i (:X)
j++;
}

a = float(1.0/n);
AM=float (pow(m,a));

printf("\n");
printf("Trung Binh Nhan la : %.2f",AM);
getch();
}

About Author

Advertisement

Post a Comment

 
Top