Computer Science, asked by wwwzainabfatima28, 4 hours ago

if y=8 then what output system.out.print(y);​

Answers

Answered by Oreki
3

\textbf{Question}

   \texttt{int y = 8;}\\\texttt{System.out.print(y);}

\textbf{\symbol{79}utput}

   \texttt{8}

Answered by TheUntrustworthy
0

Given:

if y=8 then,

output system.out.print(y);

Program:

int y=8;

system.out.print(y);

Output:

8

Similar questions