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.

#include <bits/stdc++.h>

using namespace std;

double a,b;

int main()

{

cin>>a>>b;

cout<<fixed<<setprecision(2)<<a+b<<endl;

cout<<fixed<<setprecision(2)<<a-b;

return 0;

}

7 tháng 3 2022

câu cuối là 2 mũ 64 nha mn

 

#include <bits/stdc++.h>

using namespace std;

double a,b;

int main()

{

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

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

cin>>a>>b;

cout<<fixed<<setprecision(1)<<a+b<<endl;

cout<<fixed<<setprecision(1)<<a-b;

return 0;

}

8 tháng 8 2023

a, b = map(int, input().split())

c = int(input())

result = ((a % c) * (b % c)) % c

print(result)

14 tháng 10 2020

var a,b:integer;

begin

write(' Nhap a: ');readln(a);

write(' Nhap b: ');readln(b);

writeln(' Tong la: ',a+b);

writeln(' Hieu la: '.a-b);

writeln(' Tich la: ',a*b);

writeln(' Thuong la: ',a/b);

readln;

end.

uses crt;

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

n,dem,i,j:integer;

begin

clrscr;

readln(n);

for i:=1 to n do

 read(a[i]);

for i:=1 to n do 

  begin

dem:=0;

for j:=1 to a[i] do 

  if a[i] mod j=0 then inc(dem);

if dem mod 2=0 then write('0 ')

else write('1 ');

end;

readln;

end.

8 tháng 8 2023

#include <iostream>

using namespace std;

int main() {

     long long a, b, c;

     cin >> a >> b >> c;

     long long result = ((a % c) + (b % c)) % c;

     cout << result << endl;

     return 0;

}

23 tháng 3 2022

var n,T,m,i : byte;

       s:string;

       code:integer;

 begin 

 write('n = '); readln(n); str(n,S);

 write(n, ' có ',length(s),' chữ số');  {Hết câu a}

for i:=1 to length(S) do begin

                                     val(S[i],m,code);

                                      if m mod 2 = 0 then T:=T+m;

                                      end;

write('Tổng các chữ số chẵn của ',n,' bằng : S = ',S); {Hết câu b}

readln

end.

 

23 tháng 3 2022

Ở dòng 'Hết câu b' sửa S thành T giúp mình

1 tháng 1 2021

var a,b: real;

begin

write('Nhap a,b: '); readln(a,b);

if a < b then writeln(a:5:2) else if a > b then writeln(b:5:2) else writeln('Khong co');

end.

uses crt;

var a,b:real;

begin

clrscr;

repeat

write('Nhap a='); readln(a);

write('Nhap b='); readln(b);

until a<>b;

if a<b then writeln('So nho nhat la: ',a:4:2)

else writeln('So nho nhat la: ',b:4:2);

readln;

end.

#include <bits/stdc++.h>

using namespace std;

double a,b,t,h,s,thuong;

int main()

{

cin>>a>>b;

t=a+b;

h=a-b;

s=a*b;

thuong=a/b;

cout<<fixed<<setprecision(2)<<t<<endl;

cout<<fixed<<setprecision(2)<<h<<endl;

cout<<fixed<<setprecision(2)<<s<<endl;

cout<<fixed<<setprecision(2)<<thuong;

return 0;

}