매우 쉬운 문제로군요 '-';
그냥 거스름돈을 잘 거슬러 주기만 하면 됩니다 :D
#includeusing namespace std; int main() { int n, c; int i; scanf( "%d", &n ); for( i = 1; i <= n; i++ ) { int temp; scanf( "%d", &c ); printf( "%d ", i ); temp = c / 25; printf( "%d QUARTER(S), ", temp ); c -= (temp * 25); temp = c / 10; printf( "%d DIME(S), ", temp ); c -= (temp * 10); temp = c / 5; printf( "%d NICKEL(S), ", temp ); c -= (temp * 5); printf( "%d PENNY(S)\n", c ); } return 0; }
'Solutions > Mr.K's Solution' 카테고리의 다른 글
PKU 2291. Rotten Ropes. [판정:AC] (0) | 2011.03.11 |
---|---|
PKU 3032. Card Trick. [판정:AC] (0) | 2010.12.31 |
PKU 2260. Error Correction. [판정:AC] (0) | 2010.09.07 |
UVa 341. Non-Stop Travel. [판정:TLE] (1) | 2010.08.29 |
PKU 2844. Sum and Product. [판정:TLE] (1) | 2010.05.29 |