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,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);
}
uses crt;
var n,i:integer;
a: array[1..100] of integer;
f: text;
const fi = 'so.txt';
begin
clrscr;
write('Nhap so phan tu: ');readln(n);
assign(f,fi);
rewrite(f);
for i:= 1 to n do
begin
write('Nhap so thu ',i,': ');
readln(a[i]);
if a[i] mod 2 = 0 then
writeln(f,a[i]);
end;
close(f);
readln
end.
uses crt;
const fi='tepso.txt';
var n,i:integer;
f1:text;
begin
clrscr;
assign(f1,fi); rewrite(f1);
write('Nhap n='); readln(n);
for i:=0 to 2*n-2 do
if i mod 2=0 then write(f1,i:4);
close(f1);
readln;
end.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
ll n, dem=0, sum=0; cin >> n;
ll m=n;
while(n--) {
ll x;
cin >> x;
if(x==0) break;
else {
sum+=x, dem++;
}
}
cout << ((dem==m)?dem:dem+1) << "\n" << sum; //ở đấy mình tính cả số 0 do mình cx k hiểu là đề có bắt tính thêm số 0 hay không (nếu k thì bạn chỉ cần cout << dem là được)
}
Chúc bạn học tốt!
#include <iostream>
using namespace std;
int main() {
int n;
int count = 0;
int sum = 0;
while (true) {
cin >> n;
if (n == 0) {
break;
}
count++;
sum += n;
}
cout << "So luong cac so vua nhap: " << count << endl;
cout << "Tong cac so vua nhap: " << sum << endl;
return 0;
}