摘要: http://topic.csdn.net/u/20120514/21/18215855-fde7-404e-bfb3-ace8a76145ca.html?seed=2035897726&r=78564079http://hi.baidu.com/sx_liang/blog/item/a3a7118fa8c0a803c9fc7af8.htmlhttp://zhidao.baidu.com/question/270454498.html 阅读全文
posted @ 2012-07-04 21:40 后飞IT 阅读(195) 评论(0) 推荐(0) 编辑
摘要: http://fdcwqmst.blog.163.com/blog/static/16406145520109712150424/ 阅读全文
posted @ 2012-05-08 18:08 后飞IT 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 转自:http://myturn.blog.hexun.com/15584978_d.html#include <iostream>using namespace std ;void Swap(int x, int y) ;int main(void){ int a = 1 ; int b = 2 ; cout << "a = " << a << ", " << "b = " << b << endl ; Swap(a, b) ; cout <& 阅读全文
posted @ 2012-05-03 22:00 后飞IT 阅读(4701) 评论(0) 推荐(0) 编辑
摘要: VC6.0warning C4018: '<=' : signed/unsigned mismatch这是个警告信息,strlen函数返回的类型是size_t,实质是个无符号整型 你在申明i变量时申明为: size_t i 就可以了或是在条件里判断时把i强制转型为size_t,如: for(i = m-1,j=0;(size_t)i<strlen(p);i++,j++)即可(百度解决问题!) 阅读全文
posted @ 2012-04-10 19:08 后飞IT 阅读(597) 评论(0) 推荐(0) 编辑