ACM学习日记08--【出圈】--循环链表解决(数据结构基础) 摘要: #include #include typedef struct person { struct person *next; …… 题解列表 2019年12月21日 0 点赞 0 评论 916 浏览 评分:9.9
蛇行矩阵-题解(Java代码) 摘要: import java.util.Scanner; public class Main { public static void main(String[]ages) …… 题解列表 2019年12月21日 0 点赞 0 评论 2190 浏览 评分:9.9
一位热心的老大爷-1个数组实现-精简-删除数组中的0元素-题解(C语言代码) 摘要:思路: 注意观察:往前移动,移动几位?-> 该下标之前0的个数 运用这个关系,来编写代码 #include #include int Com…… 题解列表 2019年12月21日 0 点赞 0 评论 881 浏览 评分:0.0
怎么查看测试用例-答案错误18%-没有测试失败的用例怎么改代码!!!!(C语言代码) 摘要:谁能告诉我怎么知道评判机用的测试用例?知道的请评论 只显示 点击查看系统可能提供的对比信息 ,这tm哪有那个按钮 #include #include v…… 题解列表 2019年12月21日 0 点赞 1 评论 1046 浏览 评分:2.0
[编程入门]报数问题-题解(Java代码) 摘要: import java.util.Scanner; public class Main { public static void main(String[]ages) …… 题解列表 2019年12月21日 0 点赞 0 评论 1368 浏览 评分:8.4
[编程入门]电报加密-题解(Java代码) 摘要:``` public static void main(String[] args) { Scanner sc = new Scanner(System.in); …… 题解列表 2019年12月21日 0 点赞 0 评论 961 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:题解哈 就是这个 #include int main() { char c; int q=0,w=0,e=0,r=0; while((c=getchar())!='\n') //…… 题解列表 2019年12月21日 0 点赞 2 评论 1906 浏览 评分:9.9
Kanna-【明明的随机数】--C 摘要:方法使用:先进行冒泡排序,然后进行比较是否重复。 #include int main() { int a[100], b[100]; …… 题解列表 2019年12月21日 0 点赞 0 评论 1051 浏览 评分:9.0
蓝桥杯算法提高VIP-复数求和-题解(C语言代码) 摘要:**思路**:链表存储,整的很高级似的,其实就是求和。 ```c #include int main(){ int n,a,b,i,m=0,f=0; scanf("%d",&n); …… 题解列表 2019年12月21日 0 点赞 0 评论 1210 浏览 评分:0.0
蓝桥杯算法提高VIP-数组输出-题解(C语言代码) 摘要:```c #include int main(){ int sam[4][5]; int i,j,max=-1,x,y;//max小于0 for(i=1;i…… 题解列表 2019年12月21日 0 点赞 0 评论 1056 浏览 评分:0.0