formygloryandpeacefulday  

2024年11月14日

摘要: include using namespace std; void sxh(int); int ipow(int x, int n)//平方的函数; { int i, p = 1; for (i = 1; i <= n; i++) { p = p * x; } return p; } int mai 阅读全文
posted @ 2024-11-14 21:23 残夏便是结局 阅读(13) 评论(0) 推荐(0)