[ create a new paste ] login | about

Link: http://codepad.org/BGfFubzQ    [ raw code | output | fork | 2 comments ]

C, pasted on Aug 20:
#include<stdio.h>
#include<conio.h>
#include<math.h>
int main()
{
	int i, n;
	float S, M;
	do
	{
		printf("\nNhap n(n >= 1): ");
		scanf("%d", &n);

		if(n < 1)
		{
			printf("\nn phai >= 1. Xin nhap lai !");
		}
	}while(n < 1);
	i = 1;
	S = 0;
	M = 1;
	while(i <= n)
	{
		M = M * i;
		S = pow((M + S) * 1.0, 1.0/(i + 1));
		i++;
	}
	printf("\nTong la %f", S);

	getch();
	return 0;
}


Output:
1
Line 17: error: conio.h: No such file or directory


Create a new paste based on this one


Comments:
posted by yonnon on Jul 5
em xin lỗi em không làm được
reply
posted by cuong.luucb8921 on Aug 19
#include<stdio.h>

int main(){
int i;
int n;
int t=1;
float s=0;
do
{
printf("Nhap vap n:\n");
scanf("%d",&n);
if(n < 1)
{
printf("n phai lon hon bang 1\n");
}
}while(n < 1);

for(i=1;i<=n;i++)
{
t = t*i;
s = pow(s+t, 1.0/(i+1));
}
printf("sum = %f",s);
return 0;
}

reply