汽水瓶 (C语言代码) 摘要:解题思路:非常传统的直接过程注意事项:参考代码:#include<stdio.h>int main(){ int m; int n[100]; int i; for(i=0;i…… 题解列表 2018年04月12日 0 点赞 0 评论 1153 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (Java代码) 摘要:解题思路:注意事项:个人认为,此例题的答案应该是4 1 1; 因为数组的下标是从0开始的;参考代码:import java.util.Scanner;public class Ma…… 题解列表 2018年04月12日 1 点赞 0 评论 1036 浏览 评分:0.0
弟弟的作业 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[20]; int answer=0; while(scanf("%s",&…… 题解列表 2018年04月12日 0 点赞 0 评论 842 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.12 (C语言代码)思路清晰,代码工整!从a链表中删去b链表中有相同学号的那些节点 摘要:参考代码如下:#include <stdio.h> #include <stdlib.h> //定义一个学生结构体 typedef struct Student { int i…… 题解列表 2018年04月13日 1 点赞 1 评论 1002 浏览 评分:0.0
陶陶摘苹果 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[11]; for(int i=0;i<…… 题解列表 2018年04月12日 0 点赞 0 评论 1438 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b;printf("请输入两个整数");scanf("%d %d",&a,&b);pr…… 题解列表 2018年04月13日 0 点赞 0 评论 762 浏览 评分:0.0
蓝桥杯算法提高VIP-陶陶摘苹果2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年04月13日 0 点赞 0 评论 911 浏览 评分:0.0
校门外的树 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int Max=10000+5; …… 题解列表 2018年04月13日 2 点赞 0 评论 1249 浏览 评分:0.0
C语言训练-亲密数 (C语言代码) 摘要:解题思路:把a的所有因子加起来令为b ,再把b的所有因子加起来判断是否为b即可。注意事项:参考代码:# include<stdio.h>int all_div(int b){ int j,c=0; f…… 题解列表 2018年04月13日 0 点赞 0 评论 1876 浏览 评分:0.0
陶陶摘苹果 (C语言代码) 摘要:解题思路:使用数组解会显得稍微简洁一点注意事项:参考代码:# include<stdio.h>int main(){ int a[11],i,num=0; for(i=0;i<=9;++i) scan…… 题解列表 2018年04月13日 0 点赞 0 评论 734 浏览 评分:0.0