hãy viết dưới dạng phân số tối giản: a. 0,(6); b. 0,(24); c. 1,(279); d. 2,(1485)
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: \(-1,\left(3\right)=-\dfrac{4}{3}\)
b: \(0,\left(72\right)=\dfrac{8}{11}\)
a)
a, \(0,\left(6\right)=\frac{2}{3}\)
b, \(0,\left(24\right)=\frac{8}{33}\)
b) Chọn ý A
\(0,75=\dfrac{75}{100}=\dfrac{75:25}{100:25}=\dfrac{3}{4}\\ 0,8=\dfrac{8}{10}=\dfrac{8:2}{10:2}=\dfrac{4}{5}\\ 2,15=\dfrac{215}{100}=\dfrac{215:5}{100:5}=\dfrac{43}{20}\)
A) \(0,75=\dfrac{75}{100}=\dfrac{75:25}{100:25}=\dfrac{3}{4}\)
B) \(0,8=\dfrac{8}{10}=\dfrac{8:2}{10:2}=\dfrac{4}{5}\)
C) \(2,15=\dfrac{215}{100}=\dfrac{215:5}{100:5}=\dfrac{43}{20}\)
program Tong_Phan_So;
var
tu_so1, mau_so1, tu_so2, mau_so2, tu_so_tong, mau_so_tong, ucln: integer;
begin
write('Nhap tu so phan so 1: ');
readln(tu_so1);
write('Nhap mau so phan so 1: ');
readln(mau_so1);
write('Nhap tu so phan so 2: ');
readln(tu_so2);
write('Nhap mau so phan so 2: ');
readln(mau_so2);
tu_so_tong := tu_so1 * mau_so2 + tu_so2 * mau_so1;
mau_so_tong := mau_so1 * mau_so2;
ucln := gcd(tu_so_tong, mau_so_tong);
tu_so_tong := tu_so_tong div ucln;
mau_so_tong := mau_so_tong div ucln;
writeln('Tong hai phan so la: ', tu_so_tong, '/', mau_so_tong);
end.