Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Online C++ Compiler - Build, Compile and Run your C++ programs online in your favorite browser
- #include<iostream>
- using namespace std;
- void print_minus(int n){
- while(n>0){
- cout <<'-';
- n--;
- }
- cout << endl;
- }
- int main()
- {
- int n;
- cin >> n;
- print_minus(n);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement