#include <cstdlib> |
#include <iostream> |
using namespace std; |
int main() |
{ |
int a,b,c,d,e,f; |
cout << "MASUKKAN ANGKA : "; cin >> a; |
cout << endl; |
d=a/100; |
b=a%100; |
e=b/10; |
c=b%10; |
f=c/1; |
cout << endl; |
cout << d << " = RATUSAN " << endl; |
cout << e << " = PPULUHAN " << endl; |
cout << f << " = SATUAN " << endl; |
system("PAUSE"); |
return EXIT_SUCCESS; |
} |
Senin, 21 Maret 2011
MEMISAHKAN BILANGAN INTEGER KURANG DARI 1000 MENJADI KOMPONEN-KOMPONENNYA
Langganan:
Posting Komentar (Atom)
Tidak ada komentar:
Posting Komentar