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.
Hình như cái này là lớp 10 mà sao lại đưa vô mục lớp 8
#include <bits/stdc++.h>
using namespace std;
long long a,b;
//chuongtrinhcon
long long gcd(long long a,long long b)
{
if (b==0) return(a);
return gcd(b,a%b);
}
//chuongtrinhchinh
int main()
{
cin>>a>>b;
if ((a>0 && b>0) or (a<0 && b<0)) cout<<a/gcd(a,b)<<" "<<b/gcd(a,b);
else cout<<"-"<<-a/gcd(-a,b)<<" "<<b/gcd(-a,b);
return 0;
}
Hàm round() trong Python làm tròn x về n chữ số sau dấu thập phân. Python làm tròn theo cách sau: round(0.5) là 1.0 và round(-0.5) là -1.0
program TinhDiemTrungBinh;
uses crt;
var
diemWindows, diemWinword, diemExcel, diemTrungBinh: real;
begin
clrscr;
writeln('Nhập điểm thi Windows:');
readln(diemWindows);
writeln('Nhập điểm thi Winword:');
readln(diemWinword);
writeln('Nhập điểm thi Excel:');
readln(diemExcel);
diemTrungBinh := (diemWindows + diemWinword + diemExcel) / 3;
writeln('Điểm trung bình: ', diemTrungBinh:0:1);
readln;
end.
var
Windows, Winword, Excel, TB: real;
begin
clrscr;
writeln('Nhập điểm thi Windows:');
readln(Windows);
writeln('Nhập điểm thi Winword:');
readln(Winword);
writeln('Nhập điểm thi Excel:');
readln(Excel);
TB := (Windows + Winword + Excel) / 3;
writeln('Điểm trung bình: ', TB:0:1);
readln;
end.