suppose i have:
int price1 = 35000;
int price2 = 600;
int price3 = 8765;
int price4 = 120000;
int price5 = 3800000;
and i want to output to screen the following:
35,000
600
8,765
120,000
3,800,000
what should i do ?? any good function to do this ??
int price1 = 35000;
int price2 = 600;
int price3 = 8765;
int price4 = 120000;
int price5 = 3800000;
and i want to output to screen the following:
35,000
600
8,765
120,000
3,800,000
what should i do ?? any good function to do this ??
Comment