this is how I like it but why I can't make code:Code:#include <iostream> using namespace std; int main () { long int x = 0; start: if (x != 128) { if (x == 9){x++;} //31 space//13 enter//10 enter//9 tab if (x == 10){x++;} //31 space//13 enter//10 enter//9 tab if (x == 13){x++;} //31 space//13 enter//10 enter//9 tab if (x == 32){x++;} //31 space//13 enter//10 enter//9 tab cout << (char)x; cout << x << endl; x++; goto start; } return 0; }
Code:#include <iostream> using namespace std; int main () { long int x = 0; start: if (x != 128) { if (x == 9||10||13||32){x++;} //31 space//13 enter//10 enter//9 tab cout << (char)x; cout << x << endl; x++; goto start; } return 0; }this if is allways possible why?Code:if (x == 9||10||13||32){x++;} //31 space//13 enter//10 enter//9 tab



LinkBack URL
About LinkBacks



