排序,冒泡法,选择法 摘要:#include<stdio.h>void bubble(void);void choise(void);int i,j; //定义全局变量int main(void){ in…… 文章列表 2018年02月26日 0 点赞 0 评论 1439 浏览 评分:0.0
函数return 小技巧 摘要://方法一#include <stdio.h>int judge(int ,int );int main(void){ int a,b,max,min; scanf("%d %d",&a,…… 文章列表 2018年02月27日 0 点赞 0 评论 723 浏览 评分:0.0
密码锁 摘要:描述玛雅人有一种密码,如果字符串中出现连续的2012四个数字就能解开密码。给一个长度为N的字符串,(2=<N<=13)该字符串中只含有0,1,2三种数字,问这个字符串要移位几次才能解开密码,每次只能移…… 文章列表 2018年03月01日 1 点赞 0 评论 1348 浏览 评分:0.0
确定比赛次序 摘要:描述有N个比赛队(1<=N<=500),编号依次为1,2,3,。。。。,N进行比赛,比赛结束后,裁判委员会要将所有参赛队伍从前往后依次排名,但现在裁判委员会不能直接获得每个队的比赛成绩,只知道每场比赛…… 文章列表 2018年03月02日 0 点赞 0 评论 1229 浏览 评分:0.0
1764题,题解 摘要:我是小白,不知道我对此题的解答是否正确且简洁,欢迎指点,互相进步。此题我认为需要一个变量来控制循环次数,我选择的c来控制循环1000次,a与d的关系我并不是很能表达清楚,自己领悟,解答如下#inclu…… 文章列表 2018年03月02日 2 点赞 0 评论 687 浏览 评分:0.0
做题记录 摘要:1.<<setprecision(5)<< 与 <<fixed<<setprecision(4)<< 不等同2.在C/C++程序中打印变量名称#define VNAME(name) (#name) …… 文章列表 2018年03月12日 2 点赞 0 评论 652 浏览 评分:0.0
1014:求Sn=1!+2!+3!+4!+5!+…+n!之值,其中n是一个数字(n不超过20) 摘要:#include <stdio.h>int main(){ int n,i; long long sum=1,sn=0;//sum比较大 scanf("…… 文章列表 2018年03月04日 0 点赞 0 评论 1361 浏览 评分:0.0
C++学习笔记 摘要:1.endl等对于cout来说有特殊含义的特殊符号被称为控制符;2.面向对象编程(OOP);3.一些关键字:autobreakcase char const continuedefaultdodoub…… 文章列表 2018年04月06日 13 点赞 4 评论 959 浏览 评分:0.0
1004 母牛的故事(递归) 摘要:#include<stdio.h>int f(int m){ if(m<5) { return m; } if(m>=5) { m=f(m-1)+f(m-3); ret…… 文章列表 2018年03月05日 0 点赞 0 评论 926 浏览 评分:0.0
1005题咋一直答案错误,求大神指点 摘要:#include<stdio.h>main(){float c,F;printf("请输入一个华氏温度:");scanf("%f",&F);c=5*(F-32)/9;printf("c=%0.2f",…… 文章列表 2018年03月18日 0 点赞 2 评论 154 浏览 评分:0.0