fork download
  1.  
  2. public class Vetor {
  3.  
  4. public static void main(String args[])
  5. {
  6. int []v={1,2,3,4,5};
  7. for(int aux:v)
  8. System.out.println(aux);
  9. }
  10.  
  11. }
  12. </html>
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:12: error: class, interface, or enum expected
</html>
^
1 error
stdout
Standard output is empty