Bạn chưa đăng nhập. Vui lòng đăng nhập để hỏi bài

Những câu hỏi liên quan
Lâm Việt Quang
Xem chi tiết
nam bảo
Xem chi tiết
Đặng Thị Kiều Oanh
Xem chi tiết
Anh Phạm
Xem chi tiết
Hoàn Trần
Xem chi tiết
Nguyễn Lê Phước Thịnh
9 tháng 3 2023 lúc 14:27

#include <bits/stdc++.h>

using namespace std;

int main()

{

int a,b,k;

cin>>a>>b>>k;

for (int i=a; i<=b; i++)

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

return 0;

}

phamthiminhanh
Xem chi tiết
Nguyễn Lê Phước Thịnh
5 tháng 5 2021 lúc 20:42

Bài 1:

uses crt;

var n,i,s:integer;

begin

clrscr;

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

s:=0;

for i:=1 to n do 

 if i mod 6=0 then s:=s+i;

writeln(s);

readln;

end.

Nguyễn Lê Phước Thịnh
5 tháng 5 2021 lúc 20:46

Bài 2: 

uses crt;

var a,b,c,ucln,i:integer;

begin

clrscr;

write('a='); readln(a);

write('b='); readln(b);

write('c='); readln(c);

while a<>b do 

  begin

if a>b then a:=a-b

else b:=b-a;

end;

ucln:=a;

while ucln<>c do 

 begin

if ucln>c then ucln:=ucln-c

else c:=c-ucln;

end;

writeln(ucln);

readln;

end.

Yoriichi_Tsugikuni ( ɻɛɑ...
11 tháng 6 2021 lúc 14:55

Scratch hay java

Khách vãng lai đã xóa
Lê Triệu Vy
Xem chi tiết
Kiều Vũ Linh
27 tháng 5 2022 lúc 10:01

var a:[array] of integer;

i,n,max,min,s:integer;

begin

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

for i:=1 to n do

begin

write('Nhap so thu ',i,' = ');readln(a[i]);

end;

max:=a[1];

min:=a[1];

s:=0;

for i:=1 to n do

begin

if a[i] > max then max:=a[i];

if a[i] < min then min:=a[i];

s:=s+a[i];

end;

writeln('So lon nhat la ',max);

writeln('So nho nhat la ',min);

writeln('Tong cac phan tu trong day la ',s);

writeln('Cac so chia het cho 2 la: ');

for i:=1 to n do

if a[i] mod 2 = 0 then write(a[i],'      ');

readln;

end.

phuc dora
Xem chi tiết
Cherry
3 tháng 3 2021 lúc 18:40

Bạn viết lại câu hỏi đc khihi

Nguyễn Lê Phước Thịnh
3 tháng 3 2021 lúc 19:35

j=5

k=16

Yến Phạm
Xem chi tiết
Nguyễn Lê Phước Thịnh
25 tháng 5 2022 lúc 10:24

uses crt;

var a:array[1..100]of integer;

i,n,t,ln,nn:integer;

begin

clrscr;

readln(n);

for i:=1 to n do readln(a[i]);

ln:=a[1];

nn:=a[1];

t:=0;

for i:=1 to n do 

begin

if ln<a[i] then ln:=a[i];

if nn>a[i] then nn:=a[i];

t:=t+a[i];

end;

writeln(ln);

writeln(nn);

writeln(t);

for i:=1 to n do 

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

readln;

end.

Bảo Nam
25 tháng 5 2022 lúc 15:36

var n,i,max,min,s: integer;

a: array[1..100] of integer;

begin

readln(n);

for i:=1 to n do begin

readln(a[i]);

s:=s+a[i];

end;

max:=a[1]; min:=a[1];

for i:=2 to n do begin

if max<a[i] then max:=a[i];

if min>a[i] then min:=a[i];

end;

writeln('MAX=',max,'  | MIN=',min);

for i:=1 to n do if a[i] mod 2=0 then write(a[i],' '); writeln;

write('Tong = ',s);

readln

end.