Tính S(n)=1^3+2^3+...+n^3 - No Nguyên

Breaking

Facebook

test banner

Post Top Ad

Responsive Ads Here

Post Top Ad

Responsive Ads Here

Thứ Sáu, 14 tháng 4, 2017

Tính S(n)=1^3+2^3+...+n^3

Tính S(n)=1^3+2^3+...+n^3.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include<stdio.h>
#include<conio.h>

int main()
{
 int i, n, S;
 printf("\nNhap n: ");
 scanf("%d", &n);
 S = 0;
 i = 1;
 while(i <= n)
 {
  S = S + i * i * i;
  i++;
 }
 printf("\nTong la %d", S);
 getch();
 return 0;
}

Không có nhận xét nào:

Đăng nhận xét

Post Top Ad

Responsive Ads Here