简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int a,b;for(;a+b;printf("A+B=%d\n",a+b)){printf("请分别输入A和B的值:"…… 题解列表 2017年11月02日 1 点赞 0 评论 891 浏览 评分:0.0
老王赛马 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int main() { int…… 题解列表 2017年11月01日 1 点赞 0 评论 1276 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ float a,s,d,f=1.0,n=1.0,q=0.0,w=0.0…… 题解列表 2017年11月01日 0 点赞 0 评论 849 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int n,s=1; long long b=0,z=1; …… 题解列表 2017年11月01日 1 点赞 1 评论 491 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){printf("****************\n");printf("Hello Word!\n");printf("…… 题解列表 2017年11月01日 0 点赞 0 评论 745 浏览 评分:0.0
字符删除 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char s[200],ch,*str; int i,out; while (…… 题解列表 2017年11月01日 0 点赞 0 评论 941 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:/* */ #include<stdio.h> #define N 10 void create(int *arr) { int i; f…… 题解列表 2017年11月01日 2 点赞 0 评论 1227 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:链式排序不是那么好弄。。所以用了交换注意事项:参考代码:/*lb*/ #include<stdio.h> #include<stdlib.h> typedef struct stude…… 题解列表 2017年11月01日 3 点赞 1 评论 1188 浏览 评分:8.4
幸运数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int M=500000;int a[M],count;void Lucky_nu…… 题解列表 2017年11月01日 1 点赞 0 评论 3540 浏览 评分:7.3
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 哎。。 */ #include<stdio.h> #define N 100 struct student { char num[10]; …… 题解列表 2017年10月31日 0 点赞 0 评论 1708 浏览 评分:9.9