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.

20 tháng 2 2022

Tham khảo:

Nhập n = 12345 -> Khi đó số đảo ngược của n = 54321.

Nhập n == 12340 -> Khi đó số đảo ngược của n = 4321.

Nhập n = 1000 -> Khi đó số đảo ngược của n = 1.

20 tháng 2 2022

là sao nhỉ , giúp mình chi tiết lun đi

9 tháng 2 2022

nhanh mn ơi

uses crt;

var n,i:integer;

s:real;

//chuongtrinhcon

function gthua(n:integer):real;

var gt:real;

i:integer;

begin 

gt:=1; 

for i:=1 to n do    

gt:=gt*i; 

 gthua:=gt;

end;

//chuongtrinhcon

function lthua(n,x:integer):real;

var lt:real;

i:integer;

begin

lt:=1;

for i:=1 to x do lt:=lt*x;

lthua:=lt;

end;

//chuongtrinhchinh

begin

clrscr;

readln(n);

s:=0;

for i:=1 to n do

s:=s+(lthua(i,i)/gthua(i));

writeln(s:4:2);

readln;

end.

uses crt;

var a:array[1..50]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;

for i:=1 to n do 

  write(a[i]:4);

t:=0;

for i:=1 to n do

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

writeln;

writeln(t);

readln;

end.

uses crt;

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

i,n,dem1,dem2,t1,t2,sa,sd,vt1,vt2:integer;

begin

clrscr;

readln(n);

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

dem1:=0;

t1:=0;

dem2:=0;

t2:=0;

for i:=1 to n do 

begin

if a[i]>0 then begin inc(dem1); t1:=t1+a[i]; end;

if a[i]<0 then begin inc(dem2); t2:=t2+a[i]; end;

end;

writeln(dem1);

writeln(dem2);

writeln(t1);

writeln(t2);

for i:=1 to n do 

  if a[i]>0 then 

begin

sd:=a[i];

vt1:=i;

break;

end;

if (dem1=0) then writeln('Khong co so duong trong day')

else writeln('So duong dau tien la: ',sd,' vi tri la: ',vt1);

for i:=1 to n do 

  if a[i]<0 then 

begin

sa:=a[i];

vt2:=i;

break;

end;

if (dem2=0) then writeln('Khong co so am trong day')

else writeln('So am dau tien la: ',sa,' vi tri la: ',vt2);

readln;

end.

Bạn vào việt jet hoặc nhấn link nha ;-;

https://hoc247.net/tin-hoc-11/bai-12-kieu-xau-l4211.html

Câu 1:

function tong(a,b:integer):integer;

begin

tong:=a+b;

end;

Câu 2:

function ktra(a,b,c:integer):boolean;

begin

if (a+b>c) and (a+c>b) and (b+c>a) then ktra:=true

else ktra:=false;

end;

Câu 3:

function min(a,b,c,d:real):real;

begin

min:=a;

if min>b then min:=b;

if min>c then min:=c;

if min>d then min:=d;

end;

17 tháng 6 2020

Cậu ơi có cần thêm procedure với var phía trước nữa kh á. Hay chỉ ghi vậy thôi

uses crt;

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

i,n,t,t1,t2: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 

  t:=t+a[i];

t1:=0;

t2:=0;

for i:=1 to n do 

begin

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

if a[i]<0 then t2:=t2+a[i];

end;

writeln('Tong cac phan tu la: ',t);

writeln('Tong cac so duong la: ',t1);

writeln('Tong cac so am la: ',t2);

writeln('Trung binh cong cua day la: ',t/n:4:2);

readln;

end.

19 tháng 12 2021

#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=t+x;

}

cout<<sqrt(t);

return 0;

}