1) for (int i=100; i<=110; i=i+2)
{
System.out.println((char) i);
}
Answers
Answered by
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
10
see the above attachment
Attachments:
![](https://hi-static.z-dn.net/files/df6/72dfc87c172bd69c4a2552adcb83929a.jpg)
Similar questions