摘要:
#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){ ... 阅读全文
摘要:
// texthello.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include using namespace std; int main(void) { cout<<"hello world!"<<endl; return 0; } 阅读全文