#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int x;
float rem;
cout<<"Enter number "<<endl;
cin>>x;
rem=x%10;
cout<<"Remainder= "<<rem;
getch();
}
#include<conio.h>
using namespace std;
int main()
{
int x;
float rem;
cout<<"Enter number "<<endl;
cin>>x;
rem=x%10;
cout<<"Remainder= "<<rem;
getch();
}
0 comments:
Post a Comment