Computer Science, asked by menonshivani388, 3 days ago

1) for (int i=100; i<=110; i=i+2)
{
System.out.println((char) i);
}​

Answers

Answered by ajb7899
0

Answer:

The output is:

d

df

dfh

dfhj

dfhjl

dfhjln

Explanation:

It will be printing the ASCII values of 100,102,104,106,108,110

Answered by BrainlyGovind
10

see the above attachment

Attachments:
Similar questions