COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
checkpoint3.7.cpp File Reference
#include <iostream>
Include dependency graph for checkpoint3.7.cpp:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 12 of file checkpoint3.7.cpp.

12 {
13 int x, y=10000;
14 cin >> x;
15 for (int i=5; i>0; i--){
16 cout << x / y;
17 if (i>1){
18 cout << ",";
19 }
20 x %= y;
21 y /= 10;
22 }
23
24 return 0;
25}