/// Raihan Ruhin /// CSE, Jahangirnagar University. /// Dhaka-Bangladesh. /// id: raihanruhin (topcoder / codeforces / codechef / uva / uvalive), 3235 (lightoj) /// mail: raihanruhin@ (yahoo / gmail / facebook) /// blog: ruhinraihan.blogspot.com #include<bits/stdc++.h> using namespace std; #define SET(a) memset(a,-1,sizeof(a)) #define CLR(a) memset(a,0,sizeof(a)) #define PI acos(-1.0) #define MOD 1000000007 #define MX 100010 int main() { ios_base::sync_with_stdio(0);cin.tie(0); int tc, kk=1, n, m, x, y, a, b, c; string s; cin>>tc; while(tc--) { cin>>n; cout<<kk++<<" "<<n/25<<" QUARTER(S), "; n%=25; cout<<n/10<<" DIME(S), "; n%=10; cout<<n/5<<" NICKEL(S), "; n%=5; cout<< n <<" PENNY(S)\n"; } return 0; }
Saturday, 12 September 2015
Quick Change (UVALive 3389, ZOJ 2772, POJ 3085, Regionals 2006 >> North America - Greater NY)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment