can you make a program in C that inputs 10 numbers and output if it is odd or even and the number from lowest to highest... pls ^^
Looks like its your assignment and its you who should be doing it. We can always help you in the process but just can't give you all the code you need to submit to your faculty
Code: for(int i=0; i < 10;i++) { cout << "Enter a number" << endl; cin >> number; if(number%2 == 0) printf("Number is Even"); else printf("Number is Odd"); }