摘要: 1 #include <iostream> 2 using namespace std; 3 4 void func(void); 5 6 static int count = 10; 7 8 int main() { 9 while (count--) { 10 func(); 11 } 12 1 阅读全文
posted @ 2023-11-05 19:17 VanGoghpeng 阅读(29) 评论(0) 推荐(0) 编辑