Advertisement
DaniDori

minus

Jan 12th, 2023
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1.  
  2. // Online C++ Compiler - Build, Compile and Run your C++ programs online in your favorite browser
  3.  
  4. #include<iostream>
  5.  
  6. using namespace std;
  7.  
  8. void print_minus(int n){
  9.     while(n>0){
  10.         cout <<'-';
  11.         n--;
  12.     }
  13.     cout << endl;
  14. }
  15. int main()
  16. {
  17.     int n;
  18.     cin >> n;
  19.     print_minus(n);
  20.    
  21.     return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement