2012年12月3日
摘要: 1 #include <iostream> 2 #include <stdio.h> 3 using namespace std; 4 5 int f() 6 { 7 cout<<"hello world"<<endl; 8 return 4; 9 };10 //cout<<"hello world"<<endl;11 printf("hello world\n");12 int s = f();13 14 int main()15 {16 return 0;17 阅读全文
posted @ 2012-12-03 20:21 三木追风 阅读(2848) 评论(0) 推荐(0) 编辑