1:class Test{
2:        public static void main(String[] args){
3:                int a = 100;
4:                float b = 10.0f;
5:                String str = "점수 = ";
6:                
7:                System.out.println(str + a + ',' +b);
8:                System.out.println(2+0+0+2+"월드컵");
9:                System.out.println("월드컵"+2+0+0+2);
        }
}


오키 이해갔음
그럼 만약 8라인에서 9라인처럼
2002월드컵이라고 저 방식으로 출력하는 방법은 전~혀 없는거임?