+ 1
Почему код не работает? Why doesn't code work?
public class Program { public static void main(String[] args) { int t=6; System.out.printIn (t); } }
3 Respostas
+ 4
You sould not use capital l in println. I copied your code and saw that you were using capital l in println.
+ 2
Thank you all very much
Спасибо всем большое)))
+ 1
Опечатка в названии метода. В слове "println" предпоследняя буква должна быть строчная "l" ("L"), а не заглавная "I" ("i").
You have misprinted the method name "println". The last letter but one should be the lower-case "l" ("L"), not the upper-case "I" ("i").
System.out.println (t);