SunQuest
 
           C/C++ Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingC/C++ Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
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  
Old May 10th, 2004, 09:30 AM
Numzane Numzane is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 1 Numzane User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
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

Reply With Quote
  #2  
Old May 10th, 2004, 01:49 PM
dhouston's Avatar
dhouston dhouston is offline
Contributing User
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: May 2003
Location: Tennessee
Posts: 1,355 dhouston User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via ICQ to dhouston
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.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingC/C++ Help > Please HELP me.. (c++)


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway