Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream>
- using namespace std;
- int main()
- {
- int inner_loop, outer_loop;
- for(outer_loop = 5; outer_loop >= 1;outer_loop--)
- {
- for(inner_loop = 0; inner_loop < i; inner_loop++)
- {
- cout << "*";
- }
- cout << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment