Write the output of the following program code :
char ch ;
int x =98 ;
do {
ch =(char) x;
System.out.println(ch+ “ ”);
if( x% 10 ==0)
break;
++x;
}
while(x < = 100);
Answers
Answered by
5
Answer:
please follow up........##@
Similar questions