题解列表

筛选

2789: 骑车与走路Python

摘要:解题思路:注意事项:参考代码:a=int(input())bike=(a/3)+27+23walk=a/1.2if bike>walk:    print('Walk')elif bi……

hello,world题解!

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){         cout<<"Hello,World!";      ……

1101: 循环c语言解题

摘要:解题思路:文本乘法确保高精度注意事项:之前搜索到的优秀答案是错的,比如9 2输入是有解的参考代码:#include <stdio.h>#include <string.h>void muti1(int……

谁拿了最多奖学金(封装对象)

摘要:解题思路:先把学生的属性,封装在学生类中,然后再在测试类中简单编写题目要求注意事项:参考代码:import java.util.Scanner;public class Main {    publi……

电影票给个好评

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

大整数排序代码

摘要:#include<stdio.h> #include<math.h> #include<string.h> void swapstr(char*,char*); void swapstr(ch……

与圆相关的计算

摘要:```cpp #include #include #define pi 3.14159 using namespace std; int main() { double r;……