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.

14 tháng 4 2022

25. A

26. C

27. C

28. B

#include <bits/stdc++.h>

using namespace std;

long long i;

int main()

{

for (i=20; i>=15; i--) cout<<i<<" ";

return 0;

}

uses crt;

var a:array[1..42] of real;

i,n,dem:integer;

nn:real;

begin

clrscr;

readln(n);

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

nn:=a[1];

for i:=1 to n do 

 if nn>a[i] then nn:=a[i];

for i:=1 to n do 

  if nn=a[i] then write(i:4);

writeln;

dem:=0;

for i:=1 to n do 

  if a[i]>=8 then inc(dem);

writeln(dem);

readln;

end.

14 tháng 4 2022

em chịu ạ

#include <bits/stdc++.h>

using namespace std;.

int n,i;

string a[1000];;

int main()

{

cin>>n;

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

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

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;

}

#include <bits/stdc++.h>

using namespace std;

long long n,i,x,t;

int main()

{

cin>>n;

t=0;

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

{

cin>>x;

t+=x;

}

cout<<t;

return 0;

}