This commit is contained in:
Feast
2026-05-10 09:00:14 +08:00
commit 478b3451a1
30 changed files with 1723 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <iostream>
int main() {
int pulls = 0;
std::cout << "你想抽几次?";
std::cin >> pulls;
std::cout << "好,我们准备抽 " << pulls << "\n";
return 0;
}