Processing Review for if
What is the output:
println (17/6);
What is the output:
println(17%6)
Select the legal variable names:
Write a statement that will declare a float named myNum.
What is the output?
int i=3;
if(i<10)
println("hello");
println("goodbye");
int b=3, c=14;
if(b<10)
println("hello");
if(c<10)
println("howdy");
println("goodbye");