diff --git a/750273/mario.cpp b/750273/mario.cpp deleted file mode 100644 index 00cdd65..0000000 --- a/750273/mario.cpp +++ /dev/null @@ -1,19 +0,0 @@ -#include -using namespace std; - -int main() { - int height; - - cout << "高度:"; - cin >> height; - - for (int i = 0; i <= height; i++) { - for (int j = height; j >= i; j--) { - cout << " "; - } - for (int k = 0; k <= i; k++) { - cout << "#"; - } - cout << "\n"; - } -}