Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Câu 2:
uses crt;
var a:array[1..100]of integer;
i,n,t: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 (4<a[i]) and (a[i]<15) then t:=t+a[i];
writeln(t);
readln;
end.
#include <bits/stdc++.h>
using namespace std;
long long a[5],i,t1,t2;
int main()
{
t1=0;
t2=0;
for (i=1; i<=5; i++)
{
cin>>a[i];
if (a[i]%2==0) t1=t1+a[i];
else t2=t2+a[i];
}
for (i=1; i<=5; i++) cout<<a[i]<<" ";
cout<<endl;
cout<<t1<<" "<<t2;
return 0;
}
Dòng 4:
sửa lại: readln(a);
Dòng 5:
sửa lại: readln(b);
Dòng 6:
Sửa lại: thêm dấu chẩm phẩy sau lệnh gán
Dòng 11: Thêm dấu chấm sau chữ end
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);
readln;
end.
Var n,i:integer;
Begin
n:=0;
White n<=2 do
Begin
Write('Nhap so n > 2, n = ');readln(n);
End;
Write('Cac uoc cua ',n,' la ');
For i:=1 to n do
If n mod i = 0 then write(i,' ');
Readln;
End.