#include#includeusing namespace std;void Hanoi(int n,char A,char B,char C){ //n个盘子从A借助B到C上if(n==1){cout""""">i;Hanoi(i,'A','B','C');//目的是将n个盘子从A借助B到C上...
分类:
编程语言 时间:
2014-06-28 20:48:45
阅读次数:
254
---恢复内容开始---上程序:[c-sharp] view plaincopyprint?#include #include #include #include usingnamespacestd;intmain(intargc,char*argv[]){time_ttNow=time(NULL)...
分类:
其他好文 时间:
2014-06-28 20:08:01
阅读次数:
136
01#include 02#include 03#include 04int main()05{06 json_t *entry, *root, *head, *body, *label, *value;07 char *document;08 root = json_new_object()...
分类:
Web程序 时间:
2014-06-21 12:02:30
阅读次数:
355
按值传递地址传递:应该明白只有这2种传递,下面讨论函数的按值传递#include #include int add_rtVal(int a,int b){ int c = 0; c = a + b; return c;}int main(int argc,char* argv[])...
分类:
编程语言 时间:
2014-06-21 09:28:38
阅读次数:
267
What?枚举变量就是我们自己定义的变量,除了int,char,double之外,我们肯定有自己想定义的变量,eg,我们想把Monday-Sunday每一天定义为Day,Day是一个变量,我们要根据不同的Day来输出不一样的东西。eg.(1)define a enumerated type:enum...
分类:
编程语言 时间:
2014-06-21 08:41:42
阅读次数:
239
好吧,这题直接搜索就可以了,不过要按照长度最短的来搜,很容易想得到。记得ACM比赛上有这道题,呃。。不过,直接搜。。呵呵了,真不敢想。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 char s...
分类:
其他好文 时间:
2014-06-21 07:57:45
阅读次数:
148
经典搜索 1 #include 2 #include 3 using namespace std; 4 5 const int MAX=10; 6 7 int step[MAX][MAX]; 8 char maze[MAX][MAX]; 9 int n,m,t;10 struct {11 ...
分类:
其他好文 时间:
2014-06-21 07:12:00
阅读次数:
218
这是一道笔试题,用c或c++编程实现+,-,*,/四种运算符的四则运算,运算式存放在一个字符数组中char str[]。如给定字符数组 char str[] = "3+2*5", 那么输出结果为13./*************************************************...
分类:
其他好文 时间:
2014-06-21 07:00:17
阅读次数:
218
简单题 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int MAX=205; 7 const int inf=1000000; 8 int tim[MAX][MAX]; 9 char maze[MAX][...
分类:
其他好文 时间:
2014-06-21 00:34:49
阅读次数:
226
1 #include 2 #include 3 using namespace std; 4 5 const int MAX=13; 6 7 char maze[MAX][MAX][MAX]; 8 9 struct {10 int i,j,k;11 }beg,des,que[11...
分类:
其他好文 时间:
2014-06-20 14:04:37
阅读次数:
141