题解列表

筛选

[编程入门]选择排序

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#define M 10int main(){   int a[M],……

[编程入门]实数的打印

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){    float num;                  //定义数字,类型为 float   

1140不可投机取巧

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

用字符切片来解决

摘要:解题思路:注意事项:参考代码:n = int(input())x = str(input())m = int(input())print(x[m-1:])……

二级C语言-温度转换

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main(){ double m,n; cin>……