二级C语言-计负均正(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n=20; int arr[100];//存储数 float sum=0; in…… 题解列表 2021年12月08日 0 点赞 0 评论 199 浏览 评分:9.9
最简单解法 摘要:#include<stdio.h> int main() { int q[20]; int n; int sum=0,count=0; for(int i=0;i<…… 题解列表 2021年11月30日 0 点赞 0 评论 180 浏览 评分:9.9
c语言萌新,简单易懂,希望有所帮助 摘要:解题思路:null注意事项:null参考代码:#include<stdio.h>int main(){ int str[20],i,len=0;double sum=0,avar=0; f…… 题解列表 2021年11月29日 0 点赞 0 评论 303 浏览 评分:9.9
二级C语言-计负均正(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a=0,s[20]; //数组储存20个整数 float x,sum=0; for(int i=…… 题解列表 2021年11月14日 0 点赞 0 评论 206 浏览 评分:4.0
二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main(){ int n,sum1=0,sum…… 题解列表 2021年11月10日 0 点赞 0 评论 134 浏览 评分:0.0
二级c语言-计负均正--用Python求解----(Python) 摘要:遍历列表统计大于0的个数求平均值小于0的个数 ```python t=list(map(int,input().split())) s=list(map(int,input().split())…… 题解列表 2021年11月05日 0 点赞 0 评论 641 浏览 评分:9.9
编写题解 1061: 二级C语言-计负均正 摘要:解题思路:无注意事项:赋初值参考代码:#include <stdio.h>#include <stdlib.h>int main(){ float n=0.0; int a[20],t=0…… 题解列表 2021年07月09日 0 点赞 0 评论 189 浏览 评分:0.0
简单的代码 摘要:解题思路:用一个for循环总起,再接两个分支,分别对正负数进行操作注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a[…… 题解列表 2021年06月18日 0 点赞 0 评论 157 浏览 评分:0.0
1061: [C语言]计负均正 摘要:#include <stdio.h>int main (){ int a[20]; int i; int num=0; double s; //遍历输入 for (i=0;i<20;i++) { s…… 题解列表 2021年05月07日 0 点赞 0 评论 184 浏览 评分:0.0
1061: 二级C语言-计负均正 python 摘要:解题思路:注意输入会有换行,这种写法更灵活一些注意事项:参考代码:list1 = list(map(int,input().split())) while len(list1)<20: l…… 题解列表 2021年04月25日 0 点赞 1 评论 630 浏览 评分:9.9