Computer Science, asked by hcsshusnato, 3 months ago

hello I will ask u a output
answer I know but who will do that output correctly I will give him or her 10 points
java output
int a=6,I;
for (I =a ;I >=--a;a--)
s.opln(a);
s.opln(if u answer correctly I will mark u as brainliest);​​

Answers

Answered by vijayghore
1

Answer:

now also it will give error because you have not put double quotes in the last sopln.

Explanation:

Answered by pjs509920
0

Answer:

This output indicates that System.out is a PrintStream, which is defined in a package called java.io. A package is a collection of related classes; java.io contains classes for “I/O” which stands for input and output.

The numbers and letters after the @ sign are the address of System.out, represented as a hexadecimal (base 16) number. The address of a value is its location in the computer’s memory, which might be different on different computers. In this example the address is 685d72cd, but if you run the same code you might get something different

Similar questions