IllusionSlayer KnowledgeVault Owner
Posts : 900 Join date : 2009-07-09 Age : 30 Location : Look behind you.
| Subject: I doubt it but can any of you help me? Sun Aug 16, 2009 8:43 pm | |
| - Code:
-
using namespace std;
int main(int argc, char *argv[]) { int one, two, three, four; one = 0; two = 1; three = 1; four = 2; a: cout << one << endl; cout << two << endl; cout << three << endl; cout << four << endl; one = three+four; two = four+one; three = one+two; four = two+three; goto a; system("PAUSE"); return EXIT_SUCCESS; } is there any reason for this to output hex instead of ascii? | |
|