编写题解 2847: 找第一个只出现一次的字符 摘要:解题思路:Python count() 方法用于统计字符串里某个字符或子字符串出现的次数。注意事项:1)语法:str.count(sub, start= 0,end=len(string))2)参数解…… 题解列表 2022年10月23日 0 点赞 0 评论 585 浏览 评分:7.5
编写题解 2846: 统计数字字符个数 摘要:解题思路:str.isdigit(),判断字符是否为数字注意事项:参考代码:n=input() count=0 for i in n: if i.isdigit(): #判断字符是否为数…… 题解列表 2022年10月23日 0 点赞 0 评论 1205 浏览 评分:9.9
编写题解 2927: 二分法求函数的零点 摘要:解题思路:主函数-f(x)函数-ok函数循环注意事项: 二分法参考代码:#include<stdio.h>double f(double x);void ok(double a,double b); …… 题解列表 2022年10月23日 0 点赞 0 评论 791 浏览 评分:9.9
有一门课不及格的学生 摘要:解题思路:注意事项:当且仅当两门中只有一门不及格时输出为1参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <…… 题解列表 2022年10月23日 0 点赞 1 评论 672 浏览 评分:9.0
优质题解 题解1044:三个字符串的排序 摘要:# 1044: [编程入门]三个字符串的排序 ## 知识点 ### 知识点1:字符数组的输入、字符数组的长度 在C++语言的基础库上,要另外导入`cstdio`库和`cstring`…… 题解列表 2022年10月23日 0 点赞 0 评论 4690 浏览 评分:9.4
不知道为什么运行错误 摘要:解题思路:先构建1,2,3,5,8******这个数列存在malloc出来的数组里,再进行后一项除前一项操作注意事项:进行除法,注意强制类型转换,需要对每一个int都转参考代码:#include <s…… 题解列表 2022年10月23日 0 点赞 0 评论 389 浏览 评分:9.9
判断能否被3、5、7整除代码 摘要:解题思路:注意事项:注意 else if 的使用方法参考代码:#include <stdio.h>#include <stdio.h>int main(){ int m; scanf("%…… 题解列表 2022年10月23日 0 点赞 1 评论 992 浏览 评分:9.3
求圆的面积 摘要:解题思路: 注意事项:注意要写#include<iomanip>头文件参考代码:#include<iostream>#include<iomanip>using namespace std;int m…… 题解列表 2022年10月23日 0 点赞 0 评论 357 浏览 评分:0.0
[编程入门]矩阵对角线求和,最容易理解的解法,非常暴力 摘要:解题思路:注意事项:没有丝毫含金量参考代码:x=list(map(int,input().split()))y=list(map(int,input().split()))z=list(map(int…… 题解列表 2022年10月23日 1 点赞 0 评论 1093 浏览 评分:10.0
编写题解 2837: 年龄与疾病 摘要:解题思路:1)定义4个count计数器2)输出%:'%.2f%%'%n注意事项:参考代码:n=int(input()) #病人数目 ages=list(map(int,input()…… 题解列表 2022年10月23日 0 点赞 0 评论 1075 浏览 评分:9.9