|
java i want to have count down 10 to 1 and on t 8 i -
December 12th, 2007
wan to say hello and then for to carry on after that ?? class hello{
public static void main(String[] args){
System.out.println("Space Shuttle Count Down Start") ;{
for(int i=10; i>0; i--){
if ( i==8){
System.out.print("hello");
System.out.println (i + "... ");
}}}}}
|