Những câu hỏi liên quan
DH
Xem chi tiết
DH
Xem chi tiết
DH
Xem chi tiết
NT
4 tháng 3 2022 lúc 10:09

uses crt;

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

i,n,dem:integer;

begin

clrscr;

readln(n);

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

dem:=0;

for i:=1 to n do  

if trunc(sqrt(a[i]))=sqrt(a[i]) then inc(dem);

writeln(dem);

readln;

end.

Bình luận (0)
KN
Xem chi tiết
KT
Xem chi tiết
NT
18 tháng 12 2021 lúc 0:38

#include <bits/stdc++.h>

using namespace std;

long long x,i,n,t;

int main()

{

cin>>n;

t=0;

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

{

cin>>x;

t=t+x;

}

cout<<t;

return 0;

}

Bình luận (0)
DH
Xem chi tiết
NT
28 tháng 2 2022 lúc 10:44

uses crt;

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

i,n,dem:integer;

begin

clrscr;

readln(n);

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

dem:=0;

for i:=1 to n do 

  if (trunc(sqrt(a[i]))=sqrt(a[i]) then dem:=dem+1;

writeln(dem);

readln;

end.

Bình luận (0)
NT
Xem chi tiết
0C
24 tháng 4 2022 lúc 21:44

Đúng là anh thành sứt, lên đây hỏi ạ.

 

Bình luận (0)
MD
Xem chi tiết
NL
Xem chi tiết