C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main () { printf("Hello World"); return 0; }…… 题解列表 2018年08月08日 0 点赞 0 评论 512 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.11 (C语言代码) 摘要:解题思路:用了循环链表,没有删除节点的操作,做的都是跳过节点的工作注意事项: 删注释啊直接复制粘贴好像会编译错误参考代码:#include <stdio.h> #include <stdlib.h>…… 题解列表 2018年08月09日 0 点赞 0 评论 1414 浏览 评分:0.0
程序员爬楼梯 (C语言代码) 摘要:解题思路:f(n) = 1, (n = 1, 2) 2, (n = 3) f(n - 1) + f(n - 3), (n > 3)直接打表。参考代码:#include<stdio.h…… 题解列表 2018年08月09日 4 点赞 0 评论 1199 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C++代码) 摘要:解题思路: while输入,判断小于等于四位数就break;输出千位,加个空格,以此类推。注意事项:参考代码:#include <iostream>using namespace std;int ma…… 题解列表 2018年08月09日 0 点赞 0 评论 828 浏览 评分:0.0
未知位数的数字输出位数和输出逆序数字 摘要:#include<stdio.h> int main() { int a,count=0,t,t0,b[5]={0},top=0,i,temp; while(~scanf("%d", &a))…… 题解列表 2019年02月12日 0 点赞 0 评论 1121 浏览 评分: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 评论 811 浏览 评分:0.0
蓝桥杯算法提高VIP-栅格打印问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,m; cin>>n>>m; …… 题解列表 2018年08月09日 0 点赞 0 评论 766 浏览 评分:0.0
蓝桥杯算法训练VIP-阶乘 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm> #include<cstring>using namespace std;int a[1000…… 题解列表 2018年08月09日 0 点赞 0 评论 1023 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int t,a,b,c; scanf("%d",&t); c=t%60; b=t/60…… 题解列表 2018年08月09日 0 点赞 0 评论 710 浏览 评分:0.0