C语言程序设计教程(第三版)课后习题8.1 (C语言代码) 摘要:解题思路:注意事项:参考代码://求最大公因数,最小公倍数#include<stdio.h>int maxGY(int,int);//求最大公约数int minGB(int,int);//求最小公倍数…… 题解列表 2017年09月01日 1 点赞 1 评论 558 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题8.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int judge(int);int main(void){ int num;//printf("请输入…… 题解列表 2017年09月01日 0 点赞 0 评论 644 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,count,i,j,k; int num[100]={0}; while(sc…… 题解列表 2017年09月01日 0 点赞 0 评论 933 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>struct Student{char name[50];char id[20];int a;int b;int c;}buf…… 题解列表 2017年09月01日 0 点赞 0 评论 1145 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:这题变态的是要处理数字1,if(x == 1) return 0;否则怎么样都是错。参考代码:#include<stdio.h>int isprime(int x);int mai…… 题解列表 2017年09月01日 0 点赞 0 评论 819 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int i,j; char str1[100…… 题解列表 2017年09月02日 0 点赞 0 评论 709 浏览 评分:0.0
【回文数(二)】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int f(char *str); //判断是否为回文数int main(){ …… 题解列表 2017年09月02日 0 点赞 0 评论 986 浏览 评分:0.0
【密码】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int M,a,b,c,d,i,j; char str[60],…… 题解列表 2017年09月02日 1 点赞 2 评论 468 浏览 评分:6.0
A+B for Input-Output Practice (IV) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n=1,a[n]; while(cin>>n&&n)…… 题解列表 2017年09月02日 2 点赞 0 评论 990 浏览 评分:0.0
A+B for Input-Output Practice (V) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n=1,a[n],f; cin>>f;for(in…… 题解列表 2017年09月02日 0 点赞 0 评论 677 浏览 评分:0.0