/**
* This method will ask the user for some information, create a blank picture to use as a palette and create and display the palette.
*/
186 public static void main(String[] args) {
187 int redValue;
188 Scanner sc = new Scanner(System.in);
189 System.out.print("Enter a Red value: ");
190
191 // Get the value
192 redValue = sc.nextInt();
193 this.createPalette(redValue);
}
i get these errors :
3 errors found:
File: D:\Series\drjava\bookClasses\Picture.java [line: 188]
Error: D:\Series\drjava\bookClasses\Picture.java:188: cannot find symbol
symbol : class Scanner
location: class Picture
File: D:\Series\drjava\bookClasses\Picture.java [line: 188]
Error: D:\Series\drjava\bookClasses\Picture.java:188: cannot find symbol
symbol : class Scanner
location: class Picture
File: D:\Series\drjava\bookClasses\Picture.java [line: 193]
Error: D:\Series\drjava\bookClasses\Picture.java:193: non-static variable this cannot be referenced from a static context