Plz correct the script as it says its false | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Plz correct the script as it says its false

import java.util.Scanner; class something{ public static void main(String[] args){ Scanner x = new Scanner(System.in); for (x = x.nextInt();x<79;x--){ System.out.println(x); } } }

30th Mar 2017, 4:42 PM
Mohammed Arshad
Mohammed Arshad  - avatar
1 Answer
+ 11
1) it's java not javascript! 2)the code doesn't make a lot of sense, you would probably want to make it >=0 here is the corrected code import java.util.Scanner; class something{ public static void main(String[] args){ Scanner x = new Scanner(System.in); for (int i = x.nextInt();i<79;i--){ System.out.println(i); } } }
30th Mar 2017, 4:59 PM
Kamil
Kamil - avatar