C语言训练-求矩阵的两对角线上的元素之和 (Python描述) 摘要: 17%的错误,应该是输入的问题? ```python n=int(input()) sn=0 for i in range(0,n): lis=list(map(int,in…… 题解列表 2020年04月08日 0 点赞 4 评论 1288 浏览 评分:6.6
C语言训练-求函数值-题解(Python代码) 摘要:56%的错误 也不知道哪里错了 ```python def demo(x): if x==1: return 10 elif x>1: r…… 题解列表 2020年04月08日 0 点赞 0 评论 754 浏览 评分:0.0
信息学奥赛一本通T1330-最少步数-题解(Java代码) 摘要:```java public static int n=101; public static int vis[][]=new int[101][101]; public static Nod…… 题解列表 2020年04月08日 0 点赞 0 评论 1169 浏览 评分:9.9
简单计算-题解(C++代码) 摘要:[本题大佬的优质题解](http://https://blog.dotcpp.com/a/4442 "本题大佬的优质题解")具体思路可参考此处,喊一句,大佬牛逼儿~ 本来没什么思路,看了大佬的之后茅…… 题解列表 2020年04月08日 0 点赞 0 评论 908 浏览 评分:4.0
信息学奥赛一本通T1252-走迷宫-题解(Java代码) 摘要:``` 答案错误10% java public static int n=101; public static int vis[][]=new int[101][101]; public…… 题解列表 2020年04月08日 0 点赞 0 评论 1010 浏览 评分:6.0
蓝桥杯基础练习VIP-回形取数-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { queue q; int m,n; c…… 题解列表 2020年04月08日 0 点赞 0 评论 806 浏览 评分:9.9
蓝桥杯基础练习VIP-FJ的字符串-题解(C++代码) 摘要:```cpp #include using namespace std; int f(int i){ int sum=1; for(int j=0;j=0;i--){ …… 题解列表 2020年04月08日 0 点赞 0 评论 442 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:**新手 #include int main() { char ch; int a,b,c,d; a=b=c=d=0; …… 题解列表 2020年04月08日 0 点赞 0 评论 574 浏览 评分:0.0
密码-题解(Python代码) 摘要:```python m=int(input()) for i in range(0,m): #输入m行密码 s=input() if len(s)>=8 and len(s)=…… 题解列表 2020年04月08日 0 点赞 0 评论 1061 浏览 评分:2.0
[编程入门]链表合并-题解(C语言代码) 摘要:```c #include #include typedef struct asd{ int id; int score; struct asd *next; }node; no…… 题解列表 2020年04月08日 0 点赞 0 评论 718 浏览 评分:8.0