fork download
  1. import java.lang.*;
  2.  
  3. class HelloWorld{
  4.  
  5. public static void main(String args[]){
  6.  
  7.  
  8. for(byte a = 0; a < 5; a++){
  9.  
  10. for(byte b = 5; b = 0; b--){
  11.  
  12. System.out.print("* ");
  13.  
  14. }
  15.  
  16. System.out.println("");
  17.  
  18. }
  19.  
  20. }
  21. }
Compilation error #stdin compilation error #stdout 0.05s 4386816KB
stdin
Standard input is empty
compilation info
Main.java:10: error: incompatible types: byte cannot be converted to boolean
            for(byte b = 5; b = 0; b--){
                              ^
1 error
stdout
Standard output is empty