반응형 TechNical246 가변 변수 받기 메서드에서 변수를 가변적으로 받는 방법입니다. ... 을 찍으니까 이런식으로 되는 구랴.. 오호.. 신기한지고 ㅋ public class aaa { public static String addString(String src, String... list){ if ( src == null ) { src = ""; } for ( String s : list){ src += s; } return src; } public static void main(String[] args) { aaa aaa = new aaa(); System.out.println(aaa.addString("a","b","c","d")); } } 2009. 11. 11. 1부터 100까지 줄 맞춰서 찍기 이런식으로 줄을 맞춰서 찍는다고 치자 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 쉽게 할 수도 있지만 가독성을 떨어뜨리는 코딩도 가능하다. 이렇게.. for ( int i = 1 ; i 2009. 11. 9. 자바 기초 공부할 만한 사이트 자바 기초 공부 할 만한 사이트 http://holymt.com.ne.kr/javase/ 2009. 11. 9. 간단한 입출력 프로그램 import java.util.Scanner; public class Round04Homeword2 { public static void main(String[] args) { // TODO Auto-generated method stub String name = ""; int total = 0; Scanner input = new Scanner(System.in); System.out.println("name:"); name = input.nextLine(); System.out.println("nation language:"); total = total + input.nextInt(); System.out.println("english:"); total = total + input.nextInt();.. 2009. 11. 9. 이전 1 ··· 22 23 24 25 26 27 28 ··· 62 다음 반응형