YÊU CẦU:
Nhập vào hai số a và b sau đó xuất ra UCLN của hai số đó.
-----------------------------------------------------------------------------
#include<iostream.h>
using namespace std;
void main()
{
int a,b;
cout<<"Nhap so a= ";
cin>>a;
cout<<"Nhap so b= ";
cin>>b;
while(a!=b)
{
if(a>b)
{
a=a-b;
}
else b=b-a;
}
cout<<"UCLN="<<a<<"\n";
}
-----------------------------------------------------------------------------
Sign up here with your email
ConversionConversion EmoticonEmoticon