Proszę o pomoc w rozwiązaniu zadania, program musi działąć w C++.
Proszę o pomoc.
#include <iostream>using namespace std;
void Wypisz(int i) { for (int j=0;j<i;j++) { cout << "T"; } cout << "\n";}
int main(){ int H; cin >> H;
int tempH = 1; for (int i = 0; i < (H-1); i++) { Wypisz(tempH); tempH++; } for (int i = H; i >0; i--) { Wypisz(tempH); tempH--; }}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
void Wypisz(int i) {
for (int j=0;j<i;j++) {
cout << "T";
}
cout << "\n";
}
int main()
{
int H;
cin >> H;
int tempH = 1;
for (int i = 0; i < (H-1); i++) {
Wypisz(tempH);
tempH++;
}
for (int i = H; i >0; i--) {
Wypisz(tempH);
tempH--;
}
}