摘要: #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 ethon-wang 阅读(43) 评论(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 ethon-wang 阅读(45) 评论(0) 推荐(0) 编辑