Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include "iostream.

h"
#include "string.h"
void main ()
{
char a[15];
int b,i,c,x;
cout<<"Masukkan Nominal :";cin>>a;
cout<<"==========="<<endl;
b=strlen(a) ;
c=b/3;
if (c==0){cout<<"Rp.";}else{cout<<"Rp";}
for (i=0;i<b;i++)
{
for (x=1;x<=c;x++)
{
if (i==b-(3*x))
{
cout<<".";
}
}
cout<<a[i];
}
cout<<",00";
}

You might also like