C语言训练-求车速-题解(C++代码)
摘要:不会的小伙伴来看看哦!:smile:
这道题目求新的对称数是多少,我是从95860开始的,用for循环来找新的对称数,结合if语句,并且在if语句中用break就可以了。看看我做的。
……
不一样的解法,不是取余(c语言代码)
摘要:```c
#include
#include
int main() {
for (int i = 95860; i ……
C语言训练-求车速 (Java代码)
摘要:解题思路:注意事项:参考代码:public static void main(String args[]) {
for (int i = 95860;; i++) {
String s ……
java题解 最简单的解法
摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { System.out.pri……
Manchester- 海绵宝宝求车速
摘要:解题思路:把要判断的数的每一位存入数组,首尾相同,且中间两个数也相同,输出结果;参考代码:#include <stdio.h>
#include <math.h>
int main()
{
……
震惊,某司机在开车时居然做出这样的事!!!(C语言代码)
摘要:解题思路: 里程表最大值为99999,从95859开始,做一个for循环即可。参考代码:#include <stdio.h>
int main()
{
int i;
in……
Kanna-求车速--C
摘要: #include
int main(){
int a, b, c, d;
int i;
for (i = 95859; i ……