Joined
Last Seen
-5 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 6
- Posts with Downvotes
- 4
- Downvoting Members
- 5
0 Endorsements
Ranked #27.9K
2 Posted Topics
Here is your solution just see the logic behind the program and if you have any other problem in your learning please contact me i am here for your help. thank you. #include<stdio.h> #include<iostream.h> #include<stdlib.h> #include<conio.h> void main() { int num=0,i,flag=0,div=0; cout<<"Enter a Number: "; cin>>num; for(i=2;i<num;i++) { if((num%i)==0) { …
to make menu driven program refer following page [menu driven program.](http://www.programmingcampus.com/2012/09/menu-driven-program-for-arithmetic.html)
The End.
veducator