Удалить print.cpp

This commit is contained in:
2025-09-30 15:11:57 +03:00
parent b1622b22f5
commit 8c0b94e39f

View File

@@ -1,22 +0,0 @@
#include <iostream>
using namespace std;
void print(int n) {
if (n == 0) {
return;
}
cout << "*";
print(n - 1);
}
int main() {
setlocale(0, "");
int n;
cout << "Введiть кiлькiсть зiрок: ";
cin >> n;
print(n);
cout << endl;
system("pause");
}