viết chương trình tính Tổng S=1+2+3+4+…+n 05/08/2021 Bởi Remi viết chương trình tính Tổng S=1+2+3+4+…+n
int tong(int n) { if (n <= 0) return 0; int res = 0; for (int i = 1; i <= n; i++) res = res + i; return res; } Bình luận
Name a; Uses crt; Var S, n, i: integer; Begin Readln (n); For i=1 to n do S=S+i; Write (S); Readln; End. Chúc bạn thi tốt Bình luận
int tong(int n) { if (n <= 0) return 0; int res = 0; for (int i = 1; i <= n; i++) res = res + i; return res; }
Name a;
Uses crt;
Var S, n, i: integer;
Begin
Readln (n);
For i=1 to n do S=S+i;
Write (S);
Readln;
End.
Chúc bạn thi tốt