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
my trần
Xem chi tiết
Nguyễn Lê Phước Thịnh
30 tháng 8 2021 lúc 19:15

uses crt;

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

i,n,dem,max,t,min,dem1:integer;

begin

clrscr;

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

for i:=1 to n do 

 begin

write('A[',i,']='); readln(a[i]);

end;

dem:=0;

max:=-32000;

for i:=1 to n do 

  begin

if a[i] mod 2=0 then 

begin

dem:=dem+1;

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

end;

if dem=0 then writeln('Trong day khong co so chan')

else begin

writeln('So so chan la: ',dem);

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

end;

t:=0;

for i:=1 to n do 

  if i mod 2=1 then t:=t+a[i];

writeln('Tong cac so o vi tri le la: ',t);

min:=maxint;

dem1:=0;

for i:=1 to n do 

  if a[i] mod 2<>0 then

begin  

inc(dem1);

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

end;

if dem1=0 then writeln('Trong day khong co so le')

else writeln('So le nho nhat la: ',min);

readln;

end. 

Vinh Thái
Xem chi tiết
Nguyễn Lê Phước Thịnh
21 tháng 4 2021 lúc 21:25

uses crt;

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

i,n,t,dem:integer;

begin

clrscr;

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

for i:=1 to n do 

 begin

write('A[',i,']='); readln(a[i]);

end;

t:=0;

for i:=1 to n do 

  if a[i] mod 6=0 then t:=t+a[i];

writeln('Tong cac so chia het cho 3 va 6 la: ',t);

for i:=1 to n do 

  if a[i]>3 then write(a[i]:4);

writeln;

for i:=1 to n do 

  write(a[i]:4);

dem:=0;

for i:=1 to n do 

  if (a[i] mod 2<>0) and (a[i] mod 5=0) then inc(dem);

writeln(dem);

readln;

end.

Nhật Vy
Xem chi tiết
Nguyễn Lê Phước Thịnh
23 tháng 2 2023 lúc 20:53

uses crt;

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

i,n,t:integer;

begin

clrscr;

readln(n);

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

t:=0;

for i:=1 to n do 

if a[i] mod 2=0 then t:=t+a[i];

writeln(t);

for i:=1 to n do

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

readln;

end.

Trung Trần Việt
Xem chi tiết
Nguyễn Lê Phước Thịnh
5 tháng 3 2022 lúc 19:00

#include <bits/stdc++.h>

using namespace std;

long long a[5],i,n,t;

int main()

{

n=5;

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

cin>>a[i];

for (i=1; i<=n; i++) cout<<a[i]<<" ";

cout<<endl;

t=0;

for (i=1; i<=n; i++) t+=a[i];

cout<<t<<endl;

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

if (i%2!=0) cout<<a[i]<<" ";

return 0;

}

Nguyễn Hồng Anh
Xem chi tiết
Nguyễn Hồng Anh
Xem chi tiết
Trương Thi Minh Thiết
Xem chi tiết
Nguyễn Lê Phước Thịnh
30 tháng 3 2022 lúc 20:24

#include <bits/stdc++.h>

using namespace std;

long long a[10000],i,n,t1,t2,dem1,dem2;

int main()

{

cin>>n;

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

cin>>a[i];

dem1=0;

dem2=0;

t1=0;

t2=0;

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

{

if (a[i]>0)

{

dem1++;

t1+=a[i];

}

if (a[i]<0)

{

dem2++;

t2+=a[i];

}

}

long long t3=0;

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

if (i%2==1) t3+=a[i];

long long t4=0;

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

if (i%2==1 && a[i]%2==0) t4+=a[i];

 cout<<t1<<" "<<t2<<endl;

cout<<dem1<<" "<<dem2<<endl;

cout<<t3<<endl;

cout<<t4<<endl;

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

if (a[i]%3==0) cout<<a[i]<<" ";

return 0;

}

Hoàng Phi Kim Huệ
Xem chi tiết
Bùi Anh Tuấn
10 tháng 3 2021 lúc 19:44

Nam Hải
Xem chi tiết
Nguyễn Lê Phước Thịnh
18 tháng 3 2023 lúc 1:22

#include <bits/stdc++.h>

using namespace std;

int B[100],i,n,t=0,s=1;

int main()

{

cin>>n;

for (int i=1; i<=n; i++) cin>>B[i];

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

{

if (i%2==0) s*=A[i];

else t+=A[i];

}

cout<<t<<" "<<s;

}