1069寻找矩阵最值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n+1][n+1]; for(int i=1;i<=n…… 题解列表 2024年05月25日 0 点赞 0 评论 168 浏览 评分:0.0
1070成绩归类(仅用最简单的输入规则) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int sum; int a=0,b=0,c=0; while(scanf("%d",&sum)) { if(…… 题解列表 2024年05月25日 0 点赞 0 评论 394 浏览 评分:0.0
1071阶乘公式求值(一个for循环解决) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); double m=1; double sum=0; for(int…… 题解列表 2024年05月25日 0 点赞 0 评论 402 浏览 评分:2.0
无聊的星期六 摘要:n=int(input()) for i in range(n): x=list(input().split()) print(','.join(str(i) f…… 题解列表 2024年05月25日 0 点赞 0 评论 436 浏览 评分:0.0
无聊的星期六 摘要:#试试python的类来完成,感觉还是C做起来简单 class Student: def __init__(self, id, name,grades): self.…… 题解列表 2024年05月25日 0 点赞 0 评论 301 浏览 评分:0.0
无聊的星期六 摘要:n=input() l1=l2=l3=l4=0 for i in range(len(n)): if n[i].isspace(): l1+=1 elif n…… 题解列表 2024年05月25日 0 点赞 0 评论 417 浏览 评分:0.0
无聊的星期六 摘要:n=list(map(int,input().split())) tmp=n[n.index(max(n))] n[n.index(max(n))]=n[9] n[9]=tmp tmp=n[n…… 题解列表 2024年05月25日 1 点赞 0 评论 428 浏览 评分:2.0
无聊的星期六 摘要:n=input() for i in ['a','e','i','o','u']: print('&…… 题解列表 2024年05月25日 0 点赞 0 评论 282 浏览 评分:0.0
无聊的星期六 摘要:n=[[0]*3]*3 for i in range(3): n[i]=list(map(int,input().split())) for i in range(3): pr…… 题解列表 2024年05月25日 0 点赞 0 评论 377 浏览 评分:0.0
1039-宏定义闰年判断c++ 摘要:原题链接:[https://www.dotcpp.com/oj/problem1039.html](https://www.dotcpp.com/oj/problem1039.html) 参考代…… 题解列表 2024年05月26日 0 点赞 0 评论 518 浏览 评分:10.0