2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>int main() {int n, i = 0, j = 0, k = 0;scanf("%d",&n);while(n > 0)//判断n是否符合条件{if(n…… 题解列表 2017年06月21日 0 点赞 3 评论 422 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:思路:进行无限循环,用break退出循环答案:#include<stdio.h> int main(){ int i,a=0,b=0,c=0; while(scanf("%d",&i)){ …… 题解列表 2017年06月19日 15 点赞 2 评论 1718 浏览 评分:2.0