K
Khách

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.

19 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

int i,j;

int main()

{

for (i=2; i<=10; i++)

if (i%2==0) cout<<i<<" ";

cout<<endl;

for (j=1; j<=9; j++)

if (j%2==1) cout<<j<<" ";

return 0;

}

18 tháng 4 2021

program tim_uoc;

uses crt;

var i,n,tong:integer;

begin

clrscr;

write('nhap so n:');readln(n);

i:=1;tong:=0;

writeln('cac uoc cua ',n,' la:');

while i<=n do

if n mod i=0 then

begin

write(i:3);

inc(i);

end;

writeln;

i:=1;writeln('cac uoc chan:');

while i<=n do

begin

if n mod i=0 then 

begin

if i mod 2=0 then write(i:3);

tong:=tong+i;

end;

end;

writeln;

write('tong cac uoc chan:',tong);

readln;

end.

uses crt;

var n,i,t:integer;

begin

clrscr;

write('Nhap n='); readln(n);

i:=1;

writeln('Cac uoc cua ',n,' la: ');

while i<=n do

  begin

if n mod i=0 then write(i:4):

i:=i+1;

end;

writeln;

writeln('Cac uoc chan cua ',n,' la: ');

t:=0;

i:=1;

while i<=n do 

  begin

if (n mod i=0) then

begin

t:=t+i;

write(i:4);

end;

inc(i);

end;

writeln('Tong cac uoc chan cua ',n,' la: ',t);

readln;

end.

uses crt;

var i,t1,t2:integer;

begin

clrscr;

t1:=0;

t2:=0;

i:=0;

while i<=20 do 

begin

i:=i+1;

if i mod 2=0 then t1:=t1+i

else t2:=t2+i;

end;

writeln(t1);

writeln(t2);

readln;

end.

uses crt;

var i:integer;

begin

clrscr;

i:=1;

while i<=10 do 

  begin

if i mod 2=1 then write(i:4);

i:=i+1;

end;

readln;

end.

12 tháng 3 2023

Program HOC24;

var i,n,t: integer;

begin

write('Nhap N: '); readln(n);

i:=2; t:=0;

while i<=n do

begin

t:=t+i;

i:=i+2;

end;

write('Tong cac so chan tu 1 den ',n,' la: ',t);

readln

end.

Bài 1: 

uses crt;

var m,n,i,t:integer;

begin

clrscr;

write('Nhap m='); readln(m);

write('Nhap n='); readln(n);

t:=0;

for i:=m to n do 

  t:=t+i;

writeln(t);

readln;

end.

2:

uses crt;

var n:integer;

{---------------chuong-trinh-con-kiem-tra-chan-le---------------------}

function ktcl(x:integer):boolean;

begin

if x mod 2=0 then ktcl:=true

else ktcl:=false;

end;

{--------------------chuong-trinh-con-kiem-tra-duong-am-------------------}

fucntion ktda(x:integer):boolean;

begin

if x>0 then ktda:=true

else if x<0 then ktda:=false;

end;

{--------------------chuong-trinh-chinh-------------------------}

begin

clrscr;

write('Nhap n='); readln(n);

if ktcl(n)=true then writeln('Day la so chan')

else writeln('Day la so le');

if ktda(n)=true then writeln('Day la so duong')

else writeln('Day la so am');

readln;

end.

#include <bits/stdc++.h>

using namespace std;

long long n,i,t;

int main()

{

cin>>n;

t=0;

for (i=1; i<=n; i++)

if (i%2==0) t+=i;

cout<<t;

return 0;

}

 

 

#include <bits/stdc++.h>

using namespace std;

long long n,i,t;

int main()

{

cin>>n;

t=0;

for (i=1; i<=n; i++)

if (i%2!=0) t+=i;

cout<<t;

return 0;

}

 

18 tháng 3 2022

Program viet_chuong_trinh_tinh_tong;
Uses Crt; 
Var i,s:integer; 
Begin 
Clrscr; 
i:=2; 
While (i>1) and (i<=100) do 
Begin 
s:=s+i; 
i:=i+2; 
End; 
Writeln(S); 
Readln; 
End.

uses crt;

var i:integer;

begin

clrscr;

i:=50;

while i<=150 do 

  begin

if i mod 2=0 then write(i:4);

i:=i+1;

end;

writeln;

i:=50;

while i<=150 do 

 begin

if i mod 2=1 then write(i:4);

i:=i+1;

end;

readln;

end.