二级C语言-计负均正-题解(Python代码)用While循环控制输入个数 摘要:基本思想是利用列表存储元素来进行计算 用while循环来控制输入的整形个数,把输入的元素放进列表中,当列表元素长度小于20时让用户继续输入元素,剩下的就比较简单了。 第一次写的时候就是因为没有…… 题解列表 2019年11月27日 0 点赞 0 评论 1035 浏览 评分:8.0
二级C语言-计负均正-题解(Python代码) 摘要:控制输入的数不少于20就能通过 ```python lis=list(map(int,input().split())) while len(lis)0: sn+=i …… 题解列表 2020年04月11日 0 点赞 0 评论 512 浏览 评分:7.5
二级C语言-计负均正-题解(Python代码) 摘要:解题思路:遍历两次序列 注意事项:保留两位小数参考代码:c=list(map(int,input().split()))d=list(map(int,input().split()))x=0y=…… 题解列表 2021年02月06日 0 点赞 0 评论 241 浏览 评分:0.0
1061: 二级C语言-计负均正 python 摘要:解题思路:注意输入会有换行,这种写法更灵活一些注意事项:参考代码:list1 = list(map(int,input().split())) while len(list1)<20: l…… 题解列表 2021年04月25日 0 点赞 1 评论 646 浏览 评分:9.9
二级c语言-计负均正--用Python求解----(Python) 摘要:遍历列表统计大于0的个数求平均值小于0的个数 ```python t=list(map(int,input().split())) s=list(map(int,input().split())…… 题解列表 2021年11月05日 0 点赞 0 评论 647 浏览 评分:9.9
题解 1061: 二级C语言-计负均正(Python) 摘要:解题思路:注意事项:需要输入两行数字才能成功参考代码:x=input().split()y=input().split()m=[int(i) for i in x+y if int(i)<0]n=[i…… 题解列表 2022年03月27日 0 点赞 0 评论 156 浏览 评分:8.0
通过for循环来求解 摘要:解题思路:注意事项:参考代码:list1=list(map(int,input().split()))list2=list(map(int,input().split()))list3=[]for i…… 题解列表 2022年05月01日 0 点赞 0 评论 127 浏览 评分:0.0
如果不用两个map怎么办? 摘要:解题思路:注意事项:参考代码:s=list(map(int,input().strip().split()))x=list(map(int,input().strip().split()))coun=…… 题解列表 2022年05月13日 0 点赞 0 评论 143 浏览 评分:0.0
二级C语言-计负均正 摘要:```python a = list(map(int,input().split())) while len(a)0): sum +=int(a[i]) j+=…… 题解列表 2022年07月01日 0 点赞 0 评论 185 浏览 评分:0.0
不会简单的写法 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo…… 题解列表 2022年08月10日 0 点赞 0 评论 222 浏览 评分:9.9