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.
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.
Ở hình 2, kho sao chép nội dung từ ô E4 sang ô E5 thì nội dung ở ô E5 là: =$C$4*$D$4 vì ta đã cố định địa chỉ trong công thức
#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;
}
#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;
}