摘要: #include "stdafx.h" #include using namespace std; int max(int i, int j){ /*定义max()函数*/ if (i>=j) return i; else return j; } int main(void){ ... 阅读全文
posted @ 2013-09-06 14:49 哪啊哪啊神去村 阅读(10673) 评论(0) 推荐(0) 编辑
摘要: // texthello.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include using namespace std; int main(void) { cout<<"hello world!"<<endl; return 0; } 阅读全文
posted @ 2013-09-06 14:45 哪啊哪啊神去村 阅读(231) 评论(0) 推荐(0) 编辑