2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 参考代码。注意事项:输出放的位置。参考代码:#include<stdio.h>#include <math.h>#include <string.h>#define N 10int ma…… 题解列表 2018年01月17日 2 点赞 0 评论 833 浏览 评分:0.0
二级C语言-成绩归类-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include#define N 100//先对N进行一个赋值,保证足够大即可int main(){ int a[N],i; int b,c,d; b…… 题解列表 2020年11月29日 0 点赞 0 评论 263 浏览 评分:0.0
基础编程—自学C++小试牛刀 摘要:成绩归类:C++编程 #include using namespace std; int main() { int cnt1 = 0,cnt2 = 0,cnt3 = 0,scor…… 题解列表 2020年01月18日 0 点赞 0 评论 1533 浏览 评分:0.0
二级C语言-成绩归类(水题) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a=0,b=0,c=0; while(scanf("%d",&n)&&n>0){ if(n>=8…… 题解列表 2023年01月11日 0 点赞 0 评论 61 浏览 评分:0.0
二级C语言-成绩归类 摘要:解题思路:两个易错点: 1.题目要求到0以及负数停止输入 2.遗漏换行输入的情况我的代码略显冗长(●っー3。○)注意事项:参考代码:my_list = list(map(int, inpu…… 题解列表 2023年08月15日 0 点赞 0 评论 139 浏览 评分:0.0
二级C语言-成绩归类-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,t=1; int A,B,C; A=B=C=0; while(t){ scanf("%d",&n…… 题解列表 2020年09月13日 0 点赞 0 评论 146 浏览 评分:0.0
二级C语言-成绩归类-题解(C语言代码) 摘要:#include int main(int argc,char const *argv[]) { int a[100]; int i=0,j=0,pass=0,good=0,bad=0,n…… 题解列表 2020年04月14日 0 点赞 0 评论 317 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; float score; a=b=c=0; while(scanf…… 题解列表 2017年08月27日 0 点赞 0 评论 1035 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:用for语句输入注意事项:第一个if语句不用加<=100这个条件,注意运行时最后输入个0,作为以0结束的标志。参考代码:#include<stdio.h>int main(){ int s…… 题解列表 2018年07月12日 0 点赞 0 评论 390 浏览 评分:0.0
二级C语言-成绩归类-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int arr_int[1000]; int good_int = 0; …… 题解列表 2019年11月29日 0 点赞 0 评论 318 浏览 评分:0.0