数据结构-静态链表(C++) 摘要:#include <iostream> #include <string> #include <iomanip> #define MAXSIZE 11 using namespace …… 题解列表 2021年08月02日 0 点赞 0 评论 304 浏览 评分:0.0
IP判断---------------------------------- 摘要:解题思路:注意事项:参考代码: #include "stdio.h"int main() { char S[100]; int a=0; while (scanf("%s", S)!=EOF) { …… 题解列表 2021年08月02日 0 点赞 0 评论 252 浏览 评分:0.0
DNA----------------------------------- 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "math.h"char S[100];void X(int a, int x,int y) { for (int…… 题解列表 2021年08月02日 0 点赞 0 评论 221 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:getchar();//去回车;输入方式学习参考代码:int main(){ int n,m,i; char n1[100]; scanf("%d",&n); getcha…… 题解列表 2021年08月02日 0 点赞 0 评论 223 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:结构体数组定义与使用注意事项:参考代码:struct inf{ char no[100]; char name[100]; int sc1; int …… 题解列表 2021年08月02日 0 点赞 0 评论 215 浏览 评分:0.0
论作弊狂魔如何解出1013(xswl) 摘要:解题思路:直接写结果。注意事项:数字不要打错(可复制)参考代码:#include<stdio.h>int main(){ printf("24690"); return 0;}…… 题解列表 2021年08月02日 0 点赞 1 评论 446 浏览 评分:9.9
论作弊狂魔如何解出1016(xswl) 摘要:解题思路:鉴于它让我们输出所有的水仙花数,所以只要输出水仙花数就行了。注意事项:注意每数间要加空格。参考代码:#include<stdio.h>int main(){ printf("153 37…… 题解列表 2021年08月02日 0 点赞 2 评论 430 浏览 评分:9.9
完数判断,不用数组 摘要:#include<stdio.h>int main(){ int i,j,n,sum=0; scanf("%d",&n); for(i=1;i<=n;i++) { sum=0; for(j=1;j…… 题解列表 2021年08月02日 0 点赞 0 评论 290 浏览 评分:9.9
优质题解 题目1010利润计算java正确解法 摘要:我看了好几个java的题解,并提交运行,结果都是答案错误50,都没完全通过,你们这样发出来不是误人子弟吗? 所以我决定写一篇正确的题解。解题思路: [0, 100000]和(100000…… 题解列表 2021年08月01日 3 点赞 0 评论 6091 浏览 评分:9.9
编写题解 2012: 百分制成绩转换 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int x,y,s,a[6]={0}; scanf("%d",&x); do { scan…… 题解列表 2021年08月01日 0 点赞 0 评论 432 浏览 评分:0.0