+ 1
What's wrong? JAVA code
import java.util.Scanner; public class Program { public static void main(String[] args) { //your code goes here Scanner sc = new Scanner(System.in); double bill = sc.nextDouble(); System out.println(bill * 15 / 100); } }
1 Answer
+ 4
You are missing a dot between System and out.