+ 1
How to initialize char type data type... In do while loop.. Such as while(ch=='y'¦¦ch=='Y')
2 Respuestas
+ 1
Char drink = 'd';
Int user_input;
do { If ( user_input == 'd' )
System.out.println( "drink" );
}
While(drink=='d' || drink=='D')
0
char k = 'k'; int I = 0; do{ System. out.println(k); I++; }while(i != 5)