Sinux1

PS6Q4

Mar 31st, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void output_stars(int num)
  5. {
  6.     cout << num << ": ";
  7.     for (int x = 0; x < num; x++)
  8.     {
  9.        cout << "*";
  10.     }
  11.     cout << endl;
  12. }
Add Comment
Please, Sign In to add comment