Napisz program w c++ ktoóry bedzie skracał ułamki zwykle.Wykorzystaj w programie funkcje NWD. Licznik 10Mianownik 5
Wpisujesz dwie liczby oddzielone spacjami. Jedna to licznik, druga to mianownik.
#include<iostream>
using namespace std;
int NWD(int a, int b)
{
while(a){
a %= b;
b -= a;
}
return b;
int main(){
int a, b;
cin >> a >> b;
cout << a / NWD(a, b) << " " << b / NWD(a, b);
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Wpisujesz dwie liczby oddzielone spacjami. Jedna to licznik, druga to mianownik.
#include<iostream>
using namespace std;
int NWD(int a, int b)
{
while(a){
a %= b;
b -= a;
}
return b;
}
int main(){
int a, b;
cin >> a >> b;
cout << a / NWD(a, b) << " " << b / NWD(a, b);
}