[编程入门]自定义函数之数字后移-题解(Java代码) 摘要:数字后移: Scanner sr=new Scanner(System.in); int n=sr.nextInt(); //输入数组 int[] a=new int[n]; f…… 题解列表 2020年01月31日 0 点赞 0 评论 988 浏览 评分:9.9
提成计算-题解(C++代码) 摘要:不会的小伙伴来看看哦,我的方法比较简单,可以借鉴。 #include #include using namespace std; int main() …… 题解列表 2020年01月31日 0 点赞 0 评论 865 浏览 评分:9.9
巨大的数-题解(C++代码) 摘要:不会的小伙伴来看看,题目是只要个位数,那在做这道题时就要个位数就行。 给你们看看我的办法。 #include using namespace std; int m…… 题解列表 2020年01月31日 0 点赞 6 评论 1043 浏览 评分:9.9
C语言训练-求车速-题解(C++代码) 摘要:不会的小伙伴来看看哦!:smile: 这道题目求新的对称数是多少,我是从95860开始的,用for循环来找新的对称数,结合if语句,并且在if语句中用break就可以了。看看我做的。 …… 题解列表 2020年01月31日 0 点赞 1 评论 1396 浏览 评分:9.9
蓝桥杯2017年第八届真题-日期问题-题解(C++代码) 摘要: #include #include #include #include #include #include #include …… 题解列表 2020年01月31日 0 点赞 0 评论 876 浏览 评分:9.9
蓝桥杯算法提高VIP-乘法运算-题解(C语言代码) 摘要:考虑b是10的倍数的情况: 测试数据可能不严谨,因为在b%10==0的情况下不管a是两位数还是一位数,运算过程中第一行的输出都可以是两个零。如2*10;  摘要:这题不难,就是一道物理计算题,注意保留四位小数,用for循环就行了。 不会的小伙伴来看看哦!:smile: #include #include using na…… 题解列表 2020年01月31日 0 点赞 0 评论 1175 浏览 评分:9.9
Kanna-迷宫问题--BFS(注释思路清晰) 摘要: #include using namespace std; //node结构体存储坐标与步数 struct node { int x, y; …… 题解列表 2020年02月01日 0 点赞 0 评论 1131 浏览 评分:9.9
C语言考试练习题_保留字母-题解(C语言代码) 摘要:```c #include #include int main() { int count, i, j; char a[99], b[99]; scanf("…… 题解列表 2020年02月01日 0 点赞 0 评论 880 浏览 评分:9.9
[编程入门]阶乘求和-题解(C语言代码) 摘要:```c #include long long jiecheng(int x); int main() { int n; scanf("%d",&n); int i; long…… 题解列表 2020年02月01日 0 点赞 0 评论 994 浏览 评分:9.9