Tính S(n) = 1^2 + 2^2 + 3^2 + ... + (n-1)^2 + n^2 ( đệ quy )
//Tính S(n) = 1^2 + 2^2 + 3^2 + ... + (n-1)^2 + n^2
#include<iostream.h>
#include<conio.h>
#include<math.h>
float mu(float n)
{
if(n==1)
return 1;
if(n>0)
return mu(n-1)+pow(n,2);
}
void main()
{
float n;
cout<<"Nhap n = ";
cin>>n;
cout<<"Tong = "<<mu(n);
getch();
}
0 Response to "Tính S(n) = 1^2 + 2^2 + 3^2 + ... + (n-1)^2 + n^2 ( đệ quy )"
Đăng nhận xét