printf基础练习2 (C语言代码) 摘要:解题思路:%o:八进制输出 %x:十六进制输出 %d:十进制输出注意事项:参考代码:#include<stdio.h>int main(){ int i; scanf("%d"…… 题解列表 2019年01月02日 0 点赞 0 评论 785 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,i,sum=0; scanf("%d%d",&x,&y); for(i=x;i…… 题解列表 2019年01月02日 0 点赞 0 评论 504 浏览 评分:0.0
优质题解 junmu1414:最大的字母 (C语言代码) 摘要:解题思路: 1.三个数组,c数组用于存放,分步的将a数组和b数组投入到c数组中 2.首先找到最大的符号是什么,用record记下最大…… 题解列表 2019年01月02日 2 点赞 0 评论 1640 浏览 评分:0.0
动态二维数组! Vector向量等多种解法。(C/C++语言代码) 摘要:解题思路:C语言动态开辟二维数组注意事项:记得释放内存!参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> int mai…… 题解列表 2019年01月03日 1 点赞 0 评论 1226 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include<stdio.h> #include <stdlib.h> #include <math.h> int main() { int n,row,col; int **ma…… 题解列表 2019年01月03日 0 点赞 0 评论 1160 浏览 评分:0.0
C语言训练-"水仙花数"问题2 (C语言代码) 摘要:解题思路:自己看注意事项: 换行参考代码:#include<stdio.h>int main() { int a; for(a=100; a<1000; a++) { if((a/…… 题解列表 2019年01月03日 0 点赞 0 评论 512 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:函数的应用注意事项:保留两位数参考代码:#include<stdio.h>#include<math.h>int main() { float x; scanf("%f",&x); if(x…… 题解列表 2019年01月03日 0 点赞 0 评论 730 浏览 评分:0.0
寻找奇整数 (C++代码) 摘要:解题思路:把原题中偶数都改成“-1”,然后直接查询给出的数字在列表中的位置参考代码:#include <iostream> using namespace std; int main() …… 题解列表 2019年01月03日 1 点赞 0 评论 1019 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ int n,m,i,curans,j; while(scan…… 题解列表 2019年01月04日 0 点赞 0 评论 693 浏览 评分:0.0
杨辉三角 (Java代码) 摘要:解题思路: 使用二维数组保存数据注意事项: 生成数据可以直接输出,提高效率,不用二次遍历参考代码:import java.util.Scanner; public class Yan…… 题解列表 2019年01月04日 2 点赞 0 评论 1027 浏览 评分:0.0