C语言训练-角谷猜想 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ int n; …… 题解列表 2019年04月24日 0 点赞 0 评论 4529 浏览 评分:6.7
C语言训练-舍罕王的失算 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ double …… 题解列表 2019年04月24日 0 点赞 0 评论 810 浏览 评分:9.0
矩阵转置 (C语言代码) 摘要:解题思路:矩阵转置 行优先 变列优先注意事项:参考代码:#include <stdio.h>#include <string.h>int a[1000][1000];int main(){ int n…… 题解列表 2019年04月24日 0 点赞 0 评论 555 浏览 评分:0.0
破解简单密码 (C语言代码) 摘要:解题思路:每日一水注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[150]; while(gets(a)){ ch…… 题解列表 2019年04月24日 0 点赞 0 评论 797 浏览 评分:0.0
数据结构-链表的基本操作 (C++代码) 摘要:解题思路:一点一点测试,一点一点来注意事项:慢慢把思路理清就行参考代码:#include <iostream> #include <algorithm> #include <string> #i…… 题解列表 2019年04月24日 0 点赞 0 评论 715 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,s=0,k,i; scanf("%d %d",&m,&n); for(i=m;i<=n;i++)…… 题解列表 2019年04月24日 0 点赞 0 评论 535 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,s=0,j,k; scanf("%d %d",&n,&j); k=n; for(i=0;i<j;…… 题解列表 2019年04月24日 0 点赞 0 评论 794 浏览 评分:0.0
盐水的故事 (C语言代码) 摘要:解题思路:每一滴水滴落下都算一秒每次一串水滴落完 间隔一秒注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int n,m; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 655 浏览 评分:0.0
明明的随机数 (C语言代码) 链表解决 摘要:解题思路:用链表写了一串注意事项:参考代码:#include<stdio.h> #include<malloc.h> typedef struct list { int date; st…… 题解列表 2019年04月24日 0 点赞 0 评论 617 浏览 评分:0.0
[编程入门]自定义函数之字符提取 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int len,i; char a[100]; gets(a); len=st…… 题解列表 2019年04月24日 0 点赞 0 评论 1098 浏览 评分:0.0