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

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

筛选

字符串逆序

摘要:解题思路:注意事项:参考代码:n=95859 while True:     n+=1     a=str(n)     b=a[::-1]     if a==b:         pr……

简单循环分离数字解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int i=95860,a,b,c,d,e;     for(i=95860;i<99999;i++) ……

求车速稍微取巧

摘要:解题思路:假设车速不超过150,两个小时300公里以内(也可以改400 500),将每个数都求出来,然后if判定,如果第一位和第五位相等并且第二位与第四位相等注意事项:数字要是回文数参考代码:#inc……

使用while循环

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

java题解 最简单的解法

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

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 ……