the following is C code, should work well enough. If not, you should get the general idea.
int counter;
for (int i=1;i<10;i++)
{
println("Enter a number: ");
cin << counter;
}
println("Total, %i", counter);
int i; for (i=10; printf ("%d\n", i); i--);
n=100 loop until n = 9 print n n = n -1 end loop
i=0 do if(i/2=0) msgbox(i) while(i<=10) wend
It is actually quite easy to write a program in java to do this. The easiest way to do this that I can think of is to use the remainder operator (%) to test whether a number is odd or not. Here is a simple program that will print out all the odd numbers between 1 and 50. public class OddNumbers { public static void main(String[] args) { int i=1; while(i < 50) { if(i%2 != 0) { System.out.println(i); } i++; } } }
Oh, dude, to print those numbers in QBasic, you can use a simple loop. Just loop from 1 to 5 and print the numbers with spaces in between. It's like making a sandwich, but with numbers instead of bread and cheese. So, like, don't stress, just code it up and hit run. Easy peasy, right?