Những câu hỏi liên quan
NT
Xem chi tiết
BT
17 tháng 3 2021 lúc 20:05

Bình luận (0)
BT
17 tháng 3 2021 lúc 20:05

Bình luận (0)
NT
17 tháng 3 2021 lúc 21:50

Câu 3: 

uses crt;

var n,i,kt:integer;

begin

clrscr;

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

if n>1 then 

begin

kt:=0;

for i:=2 to trunc(sqrt(n)) do 

  if n mod i=0 then kt:=1;

if kt=0 then writeln(n,' la so nguyen to')

else writeln(n,' la hop so');

end

else writeln(n,' khong la so nguyen to cung khong la hop so');

readln;

end.

Bình luận (1)
KH
Xem chi tiết
ML
18 tháng 2 2021 lúc 19:04

Program hoc24;

var i,n: integer;

t: real;

begin

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

t:=0;

for i:=1 to n do t:=t+i;

write('Trung binh tong cac so tu 1 den ',n,' la: ',t/n:1:2);

readln

end.

Bình luận (0)
NT
18 tháng 2 2021 lúc 20:50

uses crt;

var n,i,t:longint;

begin

clrscr;

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

t:=0;

for i:=1 to n do 

  t:=t+i;

writeln('Trung binh tong la: ',t/n:4:2);

readln;

end.

Bình luận (0)
H24
Xem chi tiết
VQ
Xem chi tiết
NP
12 tháng 5 2021 lúc 14:41

program tinh_trung_binh_cong;

uses crt;

var i,n,max,min:integer

tbc:real;

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

begin

clrscr;

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

for i;=1 to n do

begin

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

end;

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

for i;1= to n do

begin

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

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

end;

tbc:=(max+min)/2;

writeln(tbc);

readln;

end

Bình luận (0)
NT
12 tháng 5 2021 lúc 18:32

uses crt;

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

i,n,max,min:integer;

begin

clrscr;

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

for i:=1 to n do

  begin

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

end;

max:=a[1];

min:=a[1];

for i:=1 to n do 

begin

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

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

end;

writeln((max+min)/2:4:2);

readln;

end.

Bình luận (0)
HP
Xem chi tiết
PG
3 tháng 5 2023 lúc 19:37

program TinhTBC;

uses crt;

var

      N, i: integer;

      Tong, TBC : real;

      A: array[1..100] of real;

begin

      write('Nhap so phan tu mang N = ');

      readln(N);

      writeln('Nhap cac phan tu cua mang: ');

      for i:=1 to N do

      begin

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

            readln(A[i]);

      end;

      Tong := 0;

      for i:=1 to N do

            Tong := Tong + A[i];

      TBC := Tong / N;

      writeln('Tong cac phan tu: ', Tong:5:2);

      writeln('Trung binh cong: ', TBC:5:2);

      readln;

end.

Bình luận (0)
KN
Xem chi tiết
KN
20 tháng 4 2023 lúc 21:18

N=int(input(‘n=’))

A=[0]*n

For I in range(0,n):

A=int(input(a[‘+str(i+1)+’]=’))

S=s+a[i]

S1 =s/n

Print(s1)

Bình luận (0)
VN
Xem chi tiết
NK
2 tháng 11 2021 lúc 17:51

uses crt;

var

a,b,c,s:integer;

begin

readln(a,b,c);

s:=(a+b+c)/3;

writeln('TBC 3 so a,b,c la: ',s);

readln

end.

Bình luận (0)
PD
Xem chi tiết
NT
30 tháng 12 2021 lúc 23:41

#include <bits/stdc++.h>

using namespace std;

long long n,i,t,dem;

int main()

{

cin>>n;

t=0;

dem=0;

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

if (i%2==1)

{

t=t+i;

dem++;

}

cout<<fixed<<setprecision(2)<<(t*1.0)/(dem*1.0);

return 0;

}

Bình luận (0)
NP
Xem chi tiết
NT
12 tháng 1 2022 lúc 22:15

#include <bits/stdc++.h>

using namespace std;

long long n,i,s,dem;

int main()

{

cin>>n;

s=0;

dem=0;

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

{

if (i%2==1) 

{

dem++;

s=s+i;

}

}

cout<<fixed<<setprecision(2)<<(s*1.0)/(dem*1.0);

return 0;

}

Bình luận (0)
KL
13 tháng 1 2022 lúc 11:30

Var i,n:integer;

Begin

Write('nhap n = ');readln(n);

For i:=1 to n do

If i mod 2 = 1 then write(i,'    ');

Readln;

End.

Bình luận (0)
LT
Xem chi tiết
DN
7 tháng 3 2022 lúc 8:14

uses crt;

var m,n,t,i:integer;

begin

clrscr;

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

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

t:=0;

for i:=m to n do 

  if i mod 2=0 then t:=t+i;

writeln('Tong cac so chan tu ',m,' den ',n,' la: ',t);

readln;

end.

Bình luận (0)
NT
8 tháng 3 2022 lúc 6:59

#include <bits/stdc++.h>

using namespace std;

long long n,i,t;

int main()

{

cin>>n;

if (n%2==0)

{

t=0;

for (i=1; i<=n; i++) if (i%2==0) t+=i;

}

else 

{

t=0;

for (i=1; i<=n; i++) if (i%2!=0) t+=i;

}

cout<<t;

return 0;

}

Bình luận (0)