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.
a: Input: a,h
Output: a*h/2
b: Input: a,b
Output: (a+b)*2
#include <bits/stdc++.h>
using namespace std;
long long i,a,b;
int main()
{
cin>>a>>b;
for (i=1; i<=min(a,b); i++)
if ((a%i==0) and (b%i==0)) cout<<i<<" ";
return 0;
}
uses crt;
var a,b,c:integer;
begin
clrscr;
for a:=1 to 9 do
for b:=0 to 9 do
for c:=0 to 9 do
if (a+b+c=a*b*c) then writeln(a,b,c,' ');
readln;
end.
uses crt;
var a,b:longint;
Begin
clrscr;
Writeln('Nhap a,b=');
Readln(a,b);
writeln('tich hai so la : a*b=',a*b);
writeln('thuong hai so la :a/b=',a/b);
Readln;
End.
progam hotrotinhoc;
var a,b,d: integer;
s: longint;
begin
write('Nhap chieu dai :'); readln(a);
write('Nhap chieu rong :'); readln(b);
s:=a;
s:=s*b;
write('Dien tich hinh chu nhat la : ' ,s);
d:=sqr(a)+sqr(b);
d:=sqrt(d);
write('Duong chieu hinh chu nhat la :',d);
readln
end.
bạn ko có tiêu đề à