Computer Science, asked by sahoosuryakanta098, 7 months ago

Give the output of the following.
char character='A';
int x=32,y=2;
System.out.printhln(character+y);
System.out.printhln(character+x);
System.out.printhln((character)(character+x+y));​

Answers

Answered by lostworldearth
0

Answer:

Correct your code

char character='A';

       int x=32,y=2;

       System.out.println(character+y);

       System.out.println(character+x);

       System.out.println((character)*(character+x+y));

Output:

67

97

6435

Similar questions