上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 42 下一页
摘要: #include<iostream> using namespace std; int main(){ int a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); printf("5*(5-(1/5))\n"); return 0; } 阅读全文
posted @ 2021-12-05 13:54 智人心 阅读(19) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> using namespace std; int data[105][205],a[3],len[105]; void Plus(int i){ int k,l; for(k=i-3;k<i;k++){ for(l=0;l<l 阅读全文
posted @ 2021-12-05 13:52 智人心 阅读(23) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main(){ int a,b,c,d,fenmu,fenzi; char opt; while(scanf("%d/%d%c%d/%d",&a,&b,&opt,&c,&d)==5){ fenmu = b*d; 阅读全文
posted @ 2021-12-05 13:11 智人心 阅读(31) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> using namespace std; #define maxn 10005 int data[maxn],pre[maxn],root[maxn],visit[maxn]; int main(){ int cnt,i,p, 阅读全文
posted @ 2021-12-04 20:13 智人心 阅读(47) 评论(0) 推荐(0)
摘要: #include<iostream> #include<algorithm> using namespace std; int main(){ int t,n,data[1005],m,result,tmp1,tmp2; scanf("%d",&t); while(t--){ scanf("%d", 阅读全文
posted @ 2021-12-04 18:07 智人心 阅读(25) 评论(0) 推荐(0)
摘要: #include<iostream> #include<algorithm> #include<cstring> using namespace std; int main(){ char a[205]; scanf("%s",a); int len = strlen(a); sort(a,a+le 阅读全文
posted @ 2021-12-03 21:01 智人心 阅读(22) 评论(0) 推荐(0)
摘要: #include<iostream> #include<algorithm> using namespace std; int cmp(long long p,long long q){ if(p>q)return true; return false; } int main(){ int n,i, 阅读全文
posted @ 2021-12-03 20:53 智人心 阅读(50) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> using namespace std; char ch[15][15]; int data[15][15],hasExit,hasLoop; int r,c,colNum,exitStep,loopStep; int mai 阅读全文
posted @ 2021-12-03 20:11 智人心 阅读(34) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cmath> using namespace std; int main(){ double n,p,k; while(scanf("%lf%lf",&n,&p)==2){ k = pow(p,1.0/n); printf("%.0lf\n", 阅读全文
posted @ 2021-12-03 19:41 智人心 阅读(25) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstring> using namespace std; int n,k,total,m; char ch[10][10]; bool book[10]; void dfs(int cur){ if(m==k){ total++; retur 阅读全文
posted @ 2021-12-01 22:22 智人心 阅读(23) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 42 下一页