蓝桥杯算法训练VIP-阶乘 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm> #include<cstring>using namespace std;int a[1000…… 题解列表 2018年08月09日 0 点赞 0 评论 1271 浏览 评分:0.0
蓝桥杯算法提高VIP-栅格打印问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,m; cin>>n>>m; …… 题解列表 2018年08月09日 0 点赞 0 评论 1131 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) 一般思路(C语言代码) 摘要:解题思路:正常思路注意事项:[无]参考代码:#include<stdio.h>#include<math.h>void swap(int *a,int *b){ int temp; temp=*a; …… 题解列表 2018年08月09日 0 点赞 0 评论 1056 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C++代码) 摘要:解题思路: while输入,判断小于等于四位数就break;输出千位,加个空格,以此类推。注意事项:参考代码:#include <iostream>using namespace std;int ma…… 题解列表 2018年08月09日 0 点赞 0 评论 1116 浏览 评分:0.0
程序员的表白 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; int main(){ int n; while(cin>>n) { for(i…… 题解列表 2018年08月09日 0 点赞 0 评论 844 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:先上代码,我们只需要20行#include<stdio.h> int main() { int day = 0, i; int a[12] = { 31,28,31,30,31,30,31…… 题解列表 2018年08月09日 0 点赞 0 评论 1587 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.11 (C语言代码) 摘要:解题思路:用了循环链表,没有删除节点的操作,做的都是跳过节点的工作注意事项: 删注释啊直接复制粘贴好像会编译错误参考代码:#include <stdio.h> #include <stdlib.h>…… 题解列表 2018年08月09日 0 点赞 0 评论 1977 浏览 评分:0.0
数学的图表 (C++代码) 摘要:看了第一个大佬的,感觉是我想复杂了,不过还是可以值得借鉴一下的#include "iostream" #include "cstdio" #include "cstring" #include …… 题解列表 2018年08月08日 2 点赞 0 评论 2037 浏览 评分:0.0
字符串连接 (C++代码)可AC 摘要:解题思路:用string 的性质就可以解决了注意事项:参考代码:#include <iostream> #include <string> using namespace std; int ma…… 题解列表 2018年08月08日 1 点赞 0 评论 1134 浏览 评分:6.0