摘要: #include <iostream> using namespace std; int getpower(int x, int y) { if (y < 0) return 0; else if (y == 0) return 1; else if (y == 1) return x; else 阅读全文
posted @ 2023-05-19 17:06 记得关月亮 阅读(12) 评论(0) 推荐(0)