字符串分类统计的Python解法 摘要:解题思路:注意事项:参考代码:s=input()a,b,c,d=0,0,0,0for i in s: if i.isdigit(): a+=1 elif i.isalpha(…… 题解列表 2024年01月27日 1 点赞 0 评论 183 浏览 评分:0.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int t; scanf("%d",&a); while(a>0){ …… 题解列表 2024年01月27日 0 点赞 0 评论 195 浏览 评分:0.0
[编程入门]阶乘求和的Python解法 摘要:解题思路:注意事项:参考代码:n=int(input())Sn=0a=1for i in range(1,n+1): a*=i Sn+=aprint(Sn)…… 题解列表 2024年01月27日 0 点赞 0 评论 196 浏览 评分:0.0
求和训练(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int a,b,c; c…… 题解列表 2024年01月27日 0 点赞 0 评论 133 浏览 评分:0.0
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int g,s,b; for(int i=100;i<10…… 题解列表 2024年01月27日 0 点赞 0 评论 117 浏览 评分:0.0
完数的判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,s=0; cin >> a; for(int…… 题解列表 2024年01月27日 0 点赞 0 评论 88 浏览 评分:0.0
多边形内角和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,o,sum=0; scanf("%d", &n); j = (n - 2) * 180; for…… 题解列表 2024年01月27日 0 点赞 0 评论 108 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:先根据年份判断平闰年调用函数实现天数判断最后返回天数即可注意事项:在定义类的时候不能定义为已有的函数名称,否则报错参考代码:#include<iostream>using namespace…… 题解列表 2024年01月27日 0 点赞 0 评论 146 浏览 评分:0.0
编写题解 2832: 第n小的质数 摘要:package test; //题目 2832: 第n小的质数 import java.util.Scanner; public class Main { public static void…… 题解列表 2024年01月27日 0 点赞 0 评论 122 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:定义一个结构体初始化结构体数组利用结构体数组实现数据存入再输出即可注意事项:参考代码:#include<iostream>using namespace std;struct student…… 题解列表 2024年01月27日 1 点赞 0 评论 149 浏览 评分:0.0