viết chương trình tính tổng các phần tử lớn hơn 0 của dãy n số nhập vào từ bàn phím 17/07/2021 Bởi Alaia viết chương trình tính tổng các phần tử lớn hơn 0 của dãy n số nhập vào từ bàn phím
program tinh_tong_duong; uses crt; var A:array[1..1000] of integer; n,i,t:integer; begin clrscr; write(‘Nhap n: ‘); readln(n); t:=0; for i:=1 to n do begin write(‘Nhap so thu ‘,i,’: ‘); readln(n); if A[i]>0 then t:=t+A[i]; end; write(‘Tong cac so lon hon 0 la: ‘,t); readln; end. Bình luận
uses crt; var a: array[1..100] of integer; i,n,s: integer; begin clrscr; write (‘nhap n: ‘); readln (n); for i:=1 to n do begin write (‘nhap a[‘,i,’]: ‘); readln (a[i]); if a[i]>0 then s:=s+a[i]; end; writeln (‘tong la: ‘,s); readln; end. Xin hay nhất nhóa Bình luận
program tinh_tong_duong;
uses crt;
var A:array[1..1000] of integer;
n,i,t:integer;
begin
clrscr;
write(‘Nhap n: ‘); readln(n);
t:=0;
for i:=1 to n do
begin
write(‘Nhap so thu ‘,i,’: ‘); readln(n);
if A[i]>0 then t:=t+A[i];
end;
write(‘Tong cac so lon hon 0 la: ‘,t);
readln;
end.
uses crt;
var a: array[1..100] of integer;
i,n,s: integer;
begin
clrscr;
write (‘nhap n: ‘); readln (n);
for i:=1 to n do
begin
write (‘nhap a[‘,i,’]: ‘); readln (a[i]);
if a[i]>0 then s:=s+a[i];
end;
writeln (‘tong la: ‘,s);
readln;
end.
Xin hay nhất nhóa