Thread: whats that?
View Single Post
Old 10-24-2004, 03:44 AM   #3 (permalink)
redhead
Newbie
 
redhead's Avatar
 
Join Date: Jun 2002
Location: Denmark
Posts: 1,720
redhead is on a distinguished road
Quote:
Originally posted by Valmont
Goto's are evil.
They're only evil if you dont know what you're doing.
cracksevi, the code could have been written as:
Code:
#include <iostream.h>
int main ()
{
  int n=10;
  while(n > 0)
  {  
    cout << n << ", ";
    n--; 
  }
  cout << "FIRE!";
  return 0;
}
The execution will jump to the loop lable in the begining of the code, as long as the if (n>0) condition is true.
__________________
Don't worry Ma'am, We're university students, We know what We're doing.
-----
If you pull the pin, Mr.Grenade would no longer be your friend.
-----
01000111 01101111 00100000 01000011 00100000 00100001
redhead is offline   Reply With Quote