JakubKaczmarek_123

z10

Dec 4th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. int a,b;
  5. int main(){
  6. cout << "podaj boki prostokata: " << endl;
  7. cin >> a >> b;
  8. for (int i = 0; i < b; i++){
  9. for(int j = 0; j < a; j++){
  10. cout << '*';
  11. }
  12. cout << endl;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment