| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
Please HELP me.. (c++)
I am a newbie to C++ but and experienced Turbo Pascal programmer
I have no clue on how to set up a case statement in C++ that will write comments depending if the number is in a specific range. PLz respond ASAP |
|
#2
|
||||
|
||||
|
I'm no C++ expert, but maybe this'll get you on the right track:
Code:
#include <iostream>
using namespace std;
int compare(int num,int minimum, int maximum, int increment){
int count=0;
for(int i=minimum; i<=maximum; i+=increment){
if(num > i && num <= maximum){
count++;
}
}
return count;
}
int main(){
int code=0;
cout << "\nPlease enter a number and a range maximum: ";
cin >> code;
switch(compare(code,0,10,3)){
case 1: cout << "\nOne\n"; break;
case 2: cout << "\nTwo\n"; break;
case 3: cout << "\nThree\n"; break;
default: cout << "\nNot found\n"; break;
}
return 1;
}
It prompts for a number, a min, a max, and a range increment. The compare function iterates over the range specified, incrementing by the passed increment each time and keeping a count to determine which range the passed number falls into. The count is returned, and it should match up to one of the values in the switch statement that will print out the appropriate message. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > C/C++ Help > Please HELP me.. (c++) |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|