In this Problem we learn how to find the multiple of a number in C++. First user will input the number, program asked to enter the number to check that rather this number is multiple of that number or not ?
Source Code
#include<iostream> using namespace std; int main () { int a,b=0; cout<<" Enter Your Number :"; cin>>a; cout<<" Enter the Number to check its Multiple :"; cin>>b; if (a%b==0) { cout<<b <<" is Multiple of this Number! \n "; } else { cout<< b <<" is Not Multiple of this Number! \n "; } }
0 comments:
Post a Comment