2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double fact(int n){ double g=1; for(int i=1;i<…… 题解列表 2017年11月07日 0 点赞 0 评论 939 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; printf("请输入三个数:\n"); scanf("%d%d%d",&a,&b…… 题解列表 2017年11月07日 0 点赞 0 评论 1423 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("***************************\n"); printf("Hello W…… 题解列表 2017年11月07日 0 点赞 0 评论 750 浏览 评分:0.0
【偶数求和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[100]; int i,j,k,n,m,sum1,sum2,x; whi…… 题解列表 2017年11月07日 0 点赞 0 评论 1122 浏览 评分:0.0
非常简单的算法,题解1049:C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> struct Date { int year; int month; int …… 题解列表 2017年11月07日 0 点赞 0 评论 936 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("he…… 题解列表 2017年11月07日 0 点赞 0 评论 945 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("hello wolrd!\n"); return 0;}…… 题解列表 2017年11月07日 0 点赞 0 评论 820 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#iclude<stdio.h>main(){int a,b,c;scanf("%d%d",&a,&b);a+b=c;printf("%d+%d=%d",a,b,c);return 0;}…… 题解列表 2017年11月07日 0 点赞 0 评论 862 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d",&a); scanf("%d",&b); c=a+b; pri…… 题解列表 2017年11月06日 1 点赞 0 评论 1122 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d",&a); scanf("%d",&b); c=a+b; pri…… 题解列表 2017年11月06日 1 点赞 0 评论 910 浏览 评分:0.0