1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include <stdio.h> int main(void) { int meter; meter = 0 * 1609; printf("0 ¸¶ÀÏÀº %d¹ÌÅÍÀÔ´Ï´Ù\n", meter); meter = 1 * 1609; printf("1 ¸¶ÀÏÀº %d¹ÌÅÍÀÔ´Ï´Ù\n", meter); meter = 2 * 1609; printf("2 ¸¶ÀÏÀº %d¹ÌÅÍÀÔ´Ï´Ù\n", meter); } | cs |