题解列表

筛选

C语言训练-求车速

摘要:解题思路:注意事项:参考代码:i = 95859for n in range(i+1,i*2):    if str(n)[:3]==str(n)[-1]+str(n)[-2]+str(n)[-3]:……

不需要数组,简单运算

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a=0 , n=0 , m=0;    flo……

字符串解题,代码简短简单

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string str;    getline(cin,……

使用函数的定义和调用

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int x=0,y;void cst();/* run this program using……

话费计算Java超简单

摘要:解题思路:直接多少分中乘一下0.4就好了,他自己会加小数的注意事项:不要想麻烦了参考代码:package com.itheima;import java.util.Scanner;public cla……

贷款计算而已嘛

摘要:解题思路:全放在最后输出的时候就好了注意事项:最后输出的时候要是int参考代码:package com.itheima;import java.util.Scanner;public class Te……