题解 1140: C语言训练-求车速

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

使用while循环

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int huiwen(int i){    int k;    k=i;    int t,s=0;  ……

C语言训练-求车速-题解(C++代码)

摘要:不会的小伙伴来看看哦!:smile: 这道题目求新的对称数是多少,我是从95860开始的,用for循环来找新的对称数,结合if语句,并且在if语句中用break就可以了。看看我做的。 ……

C语言训练-求车速

摘要:解题思路:注意事项:其实还应该求速度但是答案仿佛忘了这一问如果该答案了应该加上 int speed; speed = (num - 95859) / 2;然后把两个数都打印出来参考代码:#incl……

java题解 最简单的解法

摘要:解题思路:注意事项:参考代码:public class Main {    public static void main(String[] args) {        System.out.pri……

C语言训练-求车速

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> #include <string.h> // sort函数用于判断一个整数是否为对称数……

Manchester- 海绵宝宝求车速

摘要:解题思路:把要判断的数的每一位存入数组,首尾相同,且中间两个数也相同,输出结果;参考代码:#include <stdio.h> #include <math.h> int main() {  ……

Kanna-求车速--C

摘要: #include int main(){ int a, b, c, d; int i; for (i = 95859; i ……