Java/etc
삼항연산자 이용 - 값을 나열하는 중에만 ','찍어주기
어굴애
2021. 3. 26. 00:49
1. 가로 출력되는 값 : print를 이용할 것
2. ( i== (array.length-1) ) ? " " : "," ) i가 마지막 인덱스일때는 ""출력하고 아니면 , 찍어준다
System.out.print("scores: {" );
for(int i=0; i<cloned.scores.length; i++) {
System.out.print(cloned.scores[i]);//값을 하나씩 출력
System.out.print( (i==(cloned.scores.length-1)) ? "":"," );
}
System.out.println("}");