二级C语言-计负均正-题解(C语言代码)(一维数组) 摘要:```c #include int main() { int a,arr[20],b=0,c=0;//定义一个数组,存放整数. float d=0,e=0;//保留俩位小数.…… 题解列表 2020年04月08日 0 点赞 0 评论 245 浏览 评分:0.0
1061计负均正 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int lev=0; int count=0; for(int i=0;i…… 题解列表 2024年05月25日 0 点赞 0 评论 76 浏览 评分: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语言-计负均正-题解(C语言代码)(比较简单的思路) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,n=0,m=0,i=0; float k, b = 0.00; while (n < 20) { …… 题解列表 2020年12月07日 0 点赞 0 评论 198 浏览 评分:0.0
C二级辅导-计负均正 (C语言代码) 摘要:#include<stdio.h> #define N 20 int main() { int i , num[N] , plus_sign = 0; float total = 0; f…… 题解列表 2017年07月06日 1 点赞 0 评论 809 浏览 评分:0.0
编写题解 1061: 二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[20]; int n=0,s=0,b=0; …… 题解列表 2021年12月09日 0 点赞 0 评论 216 浏览 评分:0.0
二级C语言-计负均正-题解(C语言代码) 摘要:解题思路:在输入数值时由两个变量分别统计累加正数、负数。注意事项:注意0既不是正数也不是负数。参考代码:#include<stdio.h>int main(){ int a[20],count1…… 题解列表 2020年10月12日 0 点赞 0 评论 208 浏览 评分:0.0
1061:简单易懂解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int f=0,sum=0; for(int i=0;i<20;i++){ scanf(…… 题解列表 2024年12月29日 0 点赞 0 评论 78 浏览 评分: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 评论 196 浏览 评分:0.0
C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码/*从键盘输入任意20个整型数,统计其中的负数个数并求所有正数的平均值。保留两位小数*/#include <stdio.h>int main(){ int f=0,z=0,…… 题解列表 2018年03月04日 0 点赞 0 评论 664 浏览 评分:0.0