Taking too long to run and giving Error

import java.util.*;
import java.io.*;
public class Yvalue {
    public static void main(String[] args) {
        int y,x,k=0;
        Scanner W=new Scanner (System.in);
        x=W.nextInt();
        k=W.nextInt();
        y=(15*x)-(7*k);
        System.out.printIn(Int"Value of y":y);
    }//end of main()
}//end of yvalue

Exception in thread “main” java.lang.RuntimeException: Uncompilable source code - Erroneous sym type: java.io.PrintStream.printIn
at yvalue.Yvalue.main(Yvalue.java:25)
C:\Users\JF GRAPHICS\AppData\Local\NetBeans\Cache\8.1rc\executor-snippets\run.xml:53: Java returned: 1
BUILD FAILED (total time: 11 minutes 34 seconds)

Pls where did i go wrong.

I know Java just a bit, but this line

seems incorrect

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.