K
Khách

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 20: C

11 tháng 10 2021

#include <bits/stdc++.h>

using namespace std;

int main()

{

long long a[100],n,i,t,s;

cin>>n;

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

cin>>a[i];

t=0;

s=1;

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

{

t=t+a[i];

s=s*a[i];

}

cout<<"Tong la:"<<t<<endl;

cout<<"Tich la:"<<s<<endl;

return 0;

}

12 tháng 10 2021

Chị có thể ghi lời giải trực tiếp như ở trên máy tinh đc ko ạ

18 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

long long a[10000],n,i;

int main()

{

freopen("bai2.inp","r",stdin);

freopen("bai2.out","w",stdout);

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

for (i=n; i>=1; i--) cout<<a[i]<<" ";

return 0;

}

Câu 8: 

#include <bits/stdc++.h>

using namespace std;

long long a[250],n,i;

int main()

{

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

sort(a+1,a+n+1);

for (i=1; i<=n; i++) cout<<a[i]<<" ";

return 0;

}

uses crt;

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

i,n,t,t1,dem: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]>0 then t:=t+a[i];

t1:=0;

for i:=1 to n do 

  if (a[i]>0) and (a[i] mod 2<>0) then t1:=t1+a[i];

dem:=0;

for i:=1 to n do 

  if a[i]>0 then dem:=dem+1;

writeln(t);

writeln(t1);

writeln(dem1);

readln;

end.

Bài 2: 

#include <bits/stdc++.h>

using namespace std;

long long n,i,a[1000],x;

int main()

{

freopen("bai2.inp","r",stdin);

freopen("bai2.out","w",stdout);

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

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

if (a[i]%2==0) 

{

x=a[i];

break;

}

cout<<x<<endl;

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

if (a[i]==x) cout<<i<<" ";

return 0;

}

#include <bits/stdc++.h>

using namespace std;

long long a[50],i,n,t;

int main()

{

cin>>n;

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

{

cin>>a[i];

if (a[i]<0 || a[i]>10) cin>>a[i];

}

for (i=1; i<=n; i++) cout<<a[i]<<" ";

cout<<endl;

t=0;

for (i=1; i<=n; i++) t=t+a[i];

cout<<t;

return 0;

}