Bài 86: Tính S(n) = 1^3 + 2^3 + … + N^3 #include #include int main() { int i, n, S; printf("\nNhap n: "); scanf("%d", &n); S = 0; i = 1; while(i