Viết chương trình tính : S=1*1+2*2+....+10*10 Giúp mình vs hứa sẽ cho ctlhn ạ
2 câu trả lời
program oken;
uses crt;
var s,i:longint;
begin
clrscr;
s:=0;
for i:=1 to 10 do
s:=s+(i*i);
writeln('Tong S=',s);
readln;
end.
#include<bits/stdc++.h>
using namespace std;
int main()
{
int total=0;
for(int i=1;i<=10;i++){
total+=i*i;
}
cout<<"S=1*1+2*2+....+10*10="<<total;
//samon247
return 0;
}
Câu hỏi trong lớp
Xem thêm