Saturday, 18 February 2017

C++ program of remainder

#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();
}


Share:

0 comments:

Post a Comment