摘要: #include #include #include using namespace std;void main(){ string num1; string num2; cin >> num1; cin >> num2; int temp[200][200] = {0... 阅读全文
posted @ 2016-01-15 21:15 喵小喵~ 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #include #include #define N 4void main(){ int a[N][N] = { 0 }; int data = 1; for (int i = 0; i k - 1)//减去一层 { a[i][j] ... 阅读全文
posted @ 2016-01-15 09:35 喵小喵~ 阅读(151) 评论(0) 推荐(0) 编辑
摘要: //static.h#include #include #include #define N 100typedef struct stack{ int data[N]; int top;//标识栈顶}Stack;void init(Stack *p);//初始化int isEmpty(S... 阅读全文
posted @ 2016-01-15 08:40 喵小喵~ 阅读(159) 评论(0) 推荐(0) 编辑