[출력-자가진단8]
출력 - 자가진단8 Time Limit : 1000MS 다음과 같이 출력되는 프로그램을 작성하라. (각 요소들은 10칸씩 공간을 확보하여 오른쪽으로 정렬하여 출력한다.) #include int main(void){ printf("%10s%10s%10s\n","item","count","price"); printf("%10s%10d%10d\n", "pen", 20, 100); printf("%10s%10d%10d\n", "note", 5, 95); printf("%10s%10d%10d\n", "eraser", 110, 97); return 0;}