Computer Science, asked by bearmochi78, 6 months ago

Find output - 1
char x='a';
int y=3;
while (x%y !=0)
{
System.out.print(++x+y);
System.out.println((char)x);
}

PLEASE NO SPAM​

Answers

Answered by manuprajapati519
1

Answer:

101charb

102charc

This is the original output for your program

There is one error in your program on line six, you need to put double quotes in the barcket inside char.

Please note: I have compiled it then I am giving this answer.

Similar questions