题解列表

筛选

简单的数学题

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

编写题解 2846: 统计数字字符个数

摘要:解题思路:str.isdigit(),判断字符是否为数字注意事项:参考代码:n=input() count=0 for i in n:     if i.isdigit(): #判断字符是否为数……

有一门课不及格的学生

摘要:解题思路:注意事项:当且仅当两门中只有一门不及格时输出为1参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <……
优质题解

题解1044:三个字符串的排序

摘要:# 1044: [编程入门]三个字符串的排序 ## 知识点 ### 知识点1:字符数组的输入、字符数组的长度 在C++语言的基础库上,要另外导入`cstdio`库和`cstring`……

不知道为什么运行错误

摘要:解题思路:先构建1,2,3,5,8******这个数列存在malloc出来的数组里,再进行后一项除前一项操作注意事项:进行除法,注意强制类型转换,需要对每一个int都转参考代码:#include <s……

判断能否被3、5、7整除代码

摘要:解题思路:注意事项:注意 else if 的使用方法参考代码:#include <stdio.h>#include <stdio.h>int main(){    int m;    scanf("%……

求圆的面积

摘要:解题思路: 注意事项:注意要写#include<iomanip>头文件参考代码:#include<iostream>#include<iomanip>using namespace std;int m……