I tryed to compress my file but got two errors:
Can someone see that could be wrong?
import java.util.Scanner;
public class Lab1
{
public static void main(String[] args)
{
// create a Scanner object
Scanner sc = new Scanner(System.in);
// read a string
System.out.print("enter product code: ");
String productCode = sc.next();
// read a double value
system.out.print ("Enter price: ");
double price = sc.nextDouble();
// read an int value
system.out.print ("Enter quantity: ");
int quantity = sc.nextInt();
{
//perform a calculation and display the result
double total = price * quantity;
System.out.println();
System.out.println(quantity + "" + productCode
+"@ " + price + "=" + total);
System.out.println();
}
}
}
Thanks in advance