mojo's Blog
for-each 문 활용하기 본문
import java.util.*;
public class Main {
enum Week {월,화,수,목,금,토,일}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner=new Scanner(System.in);
int []n= {1,2,3,4,5};
String []names= {"사과","배","바나나","체리","딸기","포도"};
int sum=0;
for(int k:n) {
System.out.print(k+" ");
sum+=k;
}
System.out.println("합은 "+sum);
for(String s:names) {
System.out.print(s+" ");
}
System.out.println();
for(Week day:Week.values()) {
System.out.print(day+"요일 ");
}
System.out.println();
scanner.close();
}
}
'Java' 카테고리의 다른 글
클래스, 멤버 접근 지정 및 static과 non-static, final 메소드 (0) | 2021.07.17 |
---|---|
this reference (0) | 2021.07.17 |
문자열의 n 번째 문자 가져오기 (0) | 2021.07.17 |
임의의 수 생성하기 (0) | 2021.07.17 |
예외 처리, try-catch-finally 문 (0) | 2021.07.17 |
Comments