Những câu hỏi liên quan
TN
Xem chi tiết
NT
15 tháng 11 2021 lúc 23:32

#include <bits/stdc++.h>

using namespace std;

long long a,b;

int main()

{

cin>>a>>b;

cout<<a*b<<endl;

cout<<fixed<<setprecision(2)<<(a*1.0)/(b*1.0);

return 0;

}

Bình luận (0)
H24
Xem chi tiết
NT
5 tháng 10 2021 lúc 23:49

Câu 1: 

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

write(a+b);

readln;

end.

Câu 2:

uses crt;

var a,b,c:integer;

begin

clrscr;

readln(a,b,c);

writeln(a+b-c);

readln;

end.

Bình luận (0)
NT
5 tháng 10 2021 lúc 23:50

Câu 3: 

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

writeln(a-b);

readln;

end.

Câu 4: 

uses crt;

var x,y,z:integer;

begin

clrscr;

readln(x,y,z);

writeln((x+y)*z);

readln;

end.

Bình luận (0)
H24
Xem chi tiết
NT
7 tháng 1 2022 lúc 10:17

Chọn D

Bình luận (0)
H24
8 tháng 1 2022 lúc 0:21

Khai báo biến a và b thuộc kiểu Integer

Bình luận (0)
NB
Xem chi tiết
NT
18 tháng 12 2021 lúc 10:52

1:

#include <bits/stdc++.h>

using namespace std;

double a;

int main()

{

cin>>a;

cout<<a*a;

return 0;

}

Bình luận (0)
2T
Xem chi tiết
NT
16 tháng 11 2021 lúc 23:40

Vd:

#include <bits/stdc++.h>

using namespace std;

long double x,y;

int main()

{

cin>>x>>y;

cout<<fixed<<setprecision(2)<<x+y;

return 0;

}

Bình luận (0)
TA
Xem chi tiết
PG
14 tháng 3 2023 lúc 15:44

program TongN;

var

     n, i, tong: integer;

begin

     tong := 0;

     writeln('Nhap so nguyen duong N: ');

     readln(n);

     i := 0;

     while i < n do

     begin

          i := i + 1;

          tong := tong + i;

     end;

     writeln('Tong cac so tu 1 den ', n, ' la ', tong);

     readln;

end.

Bình luận (0)
KK
Xem chi tiết
NT
21 tháng 10 2021 lúc 23:31

Câu 1: 

#include <bits/stdc++.h>

using namespace std;

double a,b,c;

int main()

{

cin>>a>>b>>c;

cout<<fixed<<setprecision(2)<<a*b*c;

return 0;

}

Bình luận (0)
LD
Xem chi tiết
NT
28 tháng 2 2023 lúc 22:28

1:

uses crt;

var n,i,t:integer;

begin

clrscr;

readln(n);

t:=0;

for i:=1 to n do

t:=t+i*i;

write(t);

readln;

end.

Bình luận (0)
LV
4 tháng 4 2023 lúc 10:21

2

program bt2;

var i,n,t:integer;

begin

readln(n);

s:=0;

for i:=1 to n do

if i mod 2 = 1 then s:=s+i;

readln;

end.

Bình luận (0)
LH
Xem chi tiết
AP
25 tháng 7 2021 lúc 14:23

cau 1:

uses crt;

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

n,i,min: integer;

begin

readln(n);

for i:=1 to n do

readln(a[i]);

min:=a[1];

for i:=2 to n do

if min>a[i] then min=a[i];

writeln(a[i]);

readln;

end.

cau 2:

uses crt;

g:text;

s:string;

const fo='CHUSO.TXT'

begin

assign(g,fo);

rewrite(g);

readln(s);

for i:=1 to length(s) do

if not((s[i] in ['a'..'z'])and(s[i] in ['A'..'Z])) then delete(s,i,1);

writeln(g,s);

end.

Bình luận (0)