摘要: #include<algorithm> #include<iostream> #include<cstring> using namespace std; bool cmp(int a,int b){ return a<b; } int main(){ int w,n,ifir,iend,tol=0 阅读全文
posted @ 2022-01-27 11:51 ggexs 阅读(55) 评论(0) 推荐(0)
摘要: code #include<iostream> using namespace std; int fun(int b,int d){//power int i=1,p=1; for(;i<=d;i++){ p*=b; } return p; } int main(){ int i,j,c,n,k,a 阅读全文
posted @ 2022-01-27 11:25 ggexs 阅读(57) 评论(0) 推荐(0)