fork download
  1. class MyClass{
  2. public static void main(String[]args){
  3. String name="Box";
  4. int age=42;
  5. double score=15.9;
  6. char group="Z";
  7. }
  8. }
Compilation error #stdin compilation error #stdout 0.05s 4386816KB
stdin
Standard input is empty
compilation info
Main.java:6: error: incompatible types: String cannot be converted to char
		char group="Z";
		           ^
1 error
stdout
Standard output is empty