A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; while(scanf("%d %d",&a,&b)!=EOF&&a!=0|…… 题解列表 2017年12月13日 0 点赞 0 评论 810 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while(n--) { …… 题解列表 2017年12月13日 1 点赞 0 评论 835 浏览 评分:0.0
字符串的输入输出处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int main() { char a[1000]; int n,i; scanf("%d",&n); getc…… 题解列表 2017年12月13日 0 点赞 0 评论 1065 浏览 评分:0.0
C语言训练-谁家孩子跑最慢这就AC了?? 摘要:解题思路:。。。注意事项:参考代码:#include<stdio.h>int main(){printf("W");}…… 题解列表 2017年12月13日 2 点赞 3 评论 869 浏览 评分:4.3
我美吗! 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int main() { int i,n; int j; scanf("%d",&n); for(i=2;i<=…… 题解列表 2017年12月13日 2 点赞 1 评论 460 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:题目说的很明白注意事项:1不是素数参考代码:#include <stdio.h>int isPrime(int a);int main(){ int m,n,i,temp,sum=0;…… 题解列表 2017年12月13日 0 点赞 0 评论 855 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include <stdio.h>void test(int a,int brr[],int c,int drr[]);int main(){ int n,m,…… 题解列表 2017年12月13日 0 点赞 0 评论 992 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:名字和学号用字符串数组存储,然后三个数组分别存储三科成绩,然后一个数组存储每个人的三科成绩的和(因为要求输出分数最大的那个,指的是三科总分.)我这里定义的分数是float型的,可能有更简洁的…… 题解列表 2017年12月13日 2 点赞 0 评论 1253 浏览 评分:0.0
WU-C二级辅导-计负均正 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a[20],i,n=0,m=0; float sum=0; for(i=0;i<20;i++) {…… 题解列表 2017年12月13日 2 点赞 0 评论 1357 浏览 评分:9.3
WU-蓝桥杯算法提高VIP-任意年月日历输出 (C++代码) 摘要:解题思路:这个题目是传统的打印日历的题目 不是很难 但要很细心 注意仔细观察样例的输出格式 才有可能AC参考代码:#include<iostream> #include<cstdio> #in…… 题解列表 2017年12月13日 11 点赞 6 评论 816 浏览 评分:6.0