[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:代码的准确度。参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 890 浏览 评分:0.0
C语言训练-邮票组合问题* (C++代码) 摘要:解题思路:dfs注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;void dfs(int i,int …… 题解列表 2019年04月24日 0 点赞 0 评论 2091 浏览 评分:5.7
C语言训练-谁家孩子跑最慢* (C++代码) 摘要:解题思路: 暴力求解注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ co…… 题解列表 2019年04月24日 0 点赞 0 评论 726 浏览 评分:2.0
C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ int n; …… 题解列表 2019年04月24日 0 点赞 0 评论 1165 浏览 评分:0.0
C语言训练-计算t=1+1/2+1/3+...+1/n (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ double …… 题解列表 2019年04月24日 0 点赞 0 评论 887 浏览 评分:0.0
C语言训练-计算1~N之间所有奇数之和 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ double …… 题解列表 2019年04月24日 0 点赞 0 评论 1081 浏览 评分:6.0
C语言训练-角谷猜想 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ int n; …… 题解列表 2019年04月24日 0 点赞 0 评论 4627 浏览 评分:6.7
C语言训练-舍罕王的失算 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ double …… 题解列表 2019年04月24日 0 点赞 0 评论 928 浏览 评分:9.0
矩阵转置 (C语言代码) 摘要:解题思路:矩阵转置 行优先 变列优先注意事项:参考代码:#include <stdio.h>#include <string.h>int a[1000][1000];int main(){ int n…… 题解列表 2019年04月24日 0 点赞 0 评论 637 浏览 评分:0.0
破解简单密码 (C语言代码) 摘要:解题思路:每日一水注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[150]; while(gets(a)){ ch…… 题解列表 2019年04月24日 0 点赞 0 评论 872 浏览 评分:0.0