0
How do get input?
I'm trying to display a message on the screen, but here's an incomprehensible error https://code.sololearn.com/cXDBQS3vaMvW/?ref=app
4 Respuestas
+ 1
insert a .nextLine after you print ‘jjj’
+ 1
import java.util.Scanner;
public class Program
{
public static void main(String[] args) {
Scanner jjj = new Scanner(System.in);
System.out.println(jjj.nextLine());
}
}
0
seperate the ‘jjj’ and the = sign
0
wait nevermind