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
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
0
Answer:1,
Explanation: because they are divisibleby 3 .
Similar questions