2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a/100==0&&a/10>0) …… 题解列表 2023年01月15日 0 点赞 0 评论 353 浏览 评分:0.0
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d %d %d",&a,&b,&c); if…… 题解列表 2023年01月15日 0 点赞 0 评论 297 浏览 评分:0.0
1151: C语言训练-计算一个整数N的阶乘 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int product(int n){ int s; if(n==0) return s=1; else …… 题解列表 2023年01月15日 0 点赞 0 评论 288 浏览 评分:0.0
1094基础解法(Python) 摘要:解题思路:注意split()的用法即可注意事项:空一行是print(),空两行是print('\n')参考代码:n = int(input())lst = []while True :…… 题解列表 2023年01月15日 0 点赞 0 评论 456 浏览 评分:0.0
1130一行解(Python) 摘要:解题思路:用内置函数解决问题,站在巨人的肩膀上不用再造轮子了注意事项:filter()用于筛选符合条件的对象元素,在Python中若为判断条件为True,则添加入filter类型中,用list类型打印…… 题解列表 2023年01月15日 0 点赞 0 评论 555 浏览 评分:7.3
为啥这样通不过呀(我不理解) 摘要: #include #include #include int main() { char a[20]; gets(a); …… 题解列表 2023年01月15日 0 点赞 0 评论 518 浏览 评分:0.0
2003基础解法(Python) 摘要:解题思路:内置函数即可注意事项:题目介绍具有误导性,输入十个字符是指读取前十个字符,而非原输入只有十个字符,isnumeric()改成isalnum(),不然其实存在错误的情形参考代码:string …… 题解列表 2023年01月15日 0 点赞 0 评论 374 浏览 评分:9.9
与圆相关的计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.14159int main(){ double r,l,c,s; scanf("%lf",&r…… 题解列表 2023年01月15日 0 点赞 5 评论 1357 浏览 评分:6.0
看不懂上面的来这!!!!简单易懂 不高级 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int m,n,maxx=99999;char a[100][100];int b[…… 题解列表 2023年01月15日 0 点赞 0 评论 391 浏览 评分:6.0
分数线划定 摘要:解题思路:两个数据有联系-》定义结构体类型,注意事项:参考代码:#include<stdio.h>typedef struct { int num; int cj;}grade;//结构体类型的定义 …… 题解列表 2023年01月15日 0 点赞 0 评论 474 浏览 评分:9.9