Программа производит сложение дробей
и вывод результата в виде дроби (без сокращения) :).

//------------------------------------------------------------------------------------------------
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int a, b, c, d;
char ch, full='a';
while(full!='n')
{
cout<<"Enter the 1st drob: ";
cin>>a>>ch>>b;
cout<<"Enter the 2nd drob: ";
cin>>c>>ch>>d;
cout<<"Result: "<<a*d+b*c<<'/'<<b*d<<endl;
cout<<"Do you whant to continiu? (y/n): ";
full=getche();
cout<<endl;
}
return 0;
}

//------------------------------------------------------------------------------------------------

Хакинг | Главная | Программирование

Hosted by uCoz