+ 1
Help with code
Why doesnt it work? https://code.sololearn.com/c1Iej9w36Nx3/?ref=app
3 Answers
+ 3
import java.util.*;
public class Program
{
public static void main(String[] args) {
Scanner word = new Scanner(System.in);
String a = word.nextLine();
System.out.print(a);
}
}
+ 3
The keyword is String not string
0
Thanks you very much



