Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
#include <bits/stdc++.h>
using namespace std;
int n,s,i,t;
int main()
{
freopen("bai1.inp","r",stdin);
freopen("bai1.out","w",stdout);
cin>>n>>s;
t=0;
for (int i=1; i<=n; i++)
{
int x;
cin>>x;
if (x%s==0) t+=x;
}
cout<<t;
}
#include <bits/stdc++.h>
using namespace std;
int n,i,t1=0,t2=0;
int main()
{
cin>>n;
for (int i=1; i<=n; i++)
{
if (i%2==0) t1+=i;
else t2+=i;
}
cout<<t1<<endl;
cout<<t2<<endl;
cout<<"hieu tuyet doi la:"<<abs(t2-t1);
}
Bài 1:
#include <bits/stdc++.h>
using namespace std;
long long a[10],n,i,t;
int main()
{
n=0;
do
{
cin>>a[i];
}
while ((a[i]==0) or (n==10));
for (i=1; i<=n; i++) cout<<a[i]<<" ";
cout<<endl;
t=0;
for (i=1; i<=n; i++)
if (a[i]%2!=0) t=t+a[i];
cout<<t;
return 0;
}
bạn có thể code bằng c căn bản chỉ dùng printf while vs for thôi đc ko bạn
#include <bits/stdc++.h>
using namespace std;
int A,i,n;
int main()
{
cin>>n;
A=0;
For (i=1;i<=n;i++)
{
A=A+i;
}
cout<<"Tong la: "<<A;
Return 0;
}
#include <bits/stdc++.h>
using namespace std;
long long i,n,t;
int main()
{
cin>>n;
t=0;
for (i=1; i<=n; i++) t=t+i;
cout<<t;
return 0;
}
Lập trình số nguyên n (n<=124), tính tổng các số nguyên lẻ từ 1 đến n.
Giúp em giải đáp án với
Program HOC24;
var a: array[1..32000] of integer;
i,n: integer;
t: longint;
begin
write('Nhap N: '); readln(n);
t:=0;
for i:=1 to n do
begin
write('A[',i,']='); readln(a[i]);
if a[i]>=5 then t:=t+a[i];
end;
write('Tong la: ',t);
readln
end.