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

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

筛选

C语言训练-求车速

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

使用while循环

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

求车速(超级简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int i;     for(i=95860;……

简单循环分离数字解法

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

1140-求车速(reverse()函数)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;int main(){……

1140-C语言训练-求车速

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ int m=95860; while……

字符串逆序

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