混合背包 C语言网最阴的题! 摘要:解题思路:注意事项: 不要被题目骗了,数组要开大一点,样例输出也是错的,服了这题目!参考代码:#include"bits/stdc++.h" using namespace std; // 定…… 题解列表 2024年11月22日 0 点赞 0 评论 44 浏览 评分:0.0
比较复杂,不建议参考 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,n; while(scanf("%d",&t)!=EOF) { n=…… 题解列表 2024年11月22日 0 点赞 0 评论 32 浏览 评分:0.0
最复杂的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long f1(int a){ long y; y=(long)a*a; return y;}long f2(int …… 题解列表 2024年11月22日 0 点赞 0 评论 44 浏览 评分:4.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a,b,c=0,d=0,e=0; scanf("%d",&n); while(n)…… 题解列表 2024年11月22日 0 点赞 0 评论 61 浏览 评分:0.0
超级超级简单的2752 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; short b; printf("%d %d",sizeof(a),sizeof(b)); ret…… 题解列表 2024年11月22日 0 点赞 0 评论 178 浏览 评分:0.0
1989题解方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[1000]; int i,sum=0; gets(a); for(i=0;a[i]!='\…… 题解列表 2024年11月22日 0 点赞 0 评论 47 浏览 评分:0.0
2002题解方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; int i,t=0; gets(a); for(i=0;a[i]!='\0&#…… 题解列表 2024年11月22日 0 点赞 0 评论 63 浏览 评分:0.0
超级超级简单的2000 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); for(int i=1;i<n;i++) { if(i%2==0…… 题解列表 2024年11月22日 0 点赞 0 评论 45 浏览 评分:0.0
简单易懂1981题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,i,j; scanf("%d%d",&m,&j); if(m>=j) printf("Error")…… 题解列表 2024年11月22日 0 点赞 0 评论 35 浏览 评分:0.0
3 5 7整除(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if((a%3==0) && (a%5==0) && (a%7=…… 题解列表 2024年11月22日 1 点赞 0 评论 124 浏览 评分:9.9