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:
  #1  
Old April 2nd, 2005, 10:06 AM
ro3908 ro3908 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 2 ro3908 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 36 m 36 sec
Reputation Power: 0
Arrow newb qestion about c++

ok im obviosly new to c++ and have sucessfuly made the famous
Hello world! program.

but i am haveing troble with my next program
P.S i am using http://www.cplusplus.com/doc/tutorial/index.html
tutorials

the program is suposed to count down from any enterd number but when i hit enter the program terminates

whats wrong

//custom countdown using while
#include <iostream.h>
int main ()
{
int n;
cout << "enter the starting number";
cin >> n;
while (n>0) {
cout << n << ", ";
--n;
}
cout << "FIRE!";
return 0;
}

any help would be great

Reply With Quote
  #2  
Old April 3rd, 2005, 03:08 AM
Bum Bum is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2005
Location: ....what is called 'developing country'...
Posts: 8 Bum User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 21 m 57 sec
Reputation Power: 0
Might be because console application closes at once after it's done it's work, try this one

#include <iostream.h>
#include <windows.h>
#include <stdio.h>
int main ()
{
int n;
printf("enter the starting number");
cin >> n;
while (n>0) {
printf("%i, ",n--);
}
printf("FIRE!\n");
system("pause");
return 0;
}

practically the same, just using printf for displaying.

Reply With Quote
  #3  
Old April 4th, 2005, 02:52 PM
ro3908 ro3908 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Apr 2005
Posts: 2 ro3908 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 36 m 36 sec
Reputation Power: 0
thx that worked

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingC/C++ Help > newb qestion about 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 5 hosted by Hostway
Stay green...Green IT