+ 13
Fill in the blank java challenge
public class Myclass { public static void main(String[] args){ // the line below this gives an output // _ System.out.println("Hey Sis"); } } Fill the blank place to output Hey Sis
4 Respuestas
+ 13
Check this out.
https://code.sololearn.com/cvPIisje8KdN/?ref=app
+ 11
I know but they want me to put something in the _ area so i just said.
Since it's single line comment so i will just press enter there to make System.out.println not a comment.
is there something else i can do?
+ 2
you can "clear" a comment when you make // and then \
0
public class Myclass {
public static void main(String[] args){
// the line below this gives an output
System.out.println("Hey Sis");
}
}