Computer Science, asked by chsmreddy1999, 4 months ago

16. What is the output of the
Java code snippet?
int i=0;
for(i=1; i<=6;i++)
{
if(i%3==0)
continue;
System.out.print(i+",");
}​

Answers

Answered by shreykalra650
1

Answer:

the output will be7 in this java snippet

Explanation:

hey guys plzz like my answer and mark me brainliest and follow me I will follow uh back guyss

Answered by yogeshpagar456
0

Answer:1,

Explanation: because they are divisibleby 3 .

Similar questions