Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active January 12, 2020 14:01
Show Gist options
  • Save uncoded-ro/a17ecf6f0e642229cdfec3b77130028f to your computer and use it in GitHub Desktop.
Save uncoded-ro/a17ecf6f0e642229cdfec3b77130028f to your computer and use it in GitHub Desktop.
class Culori {
public static void main(String[] args) {
String culori[] = { "alb", "verde", "rosu", "gaben", "albastru", "negru" };
int i;
for (i = 0; i < culori.length; i++) {
System.out.println(culori[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment