问题及代码:
/*
* Copyright (c) 2015,烟台大学计算机学院
* All rights reserved.
* 文件名称: test.cpp
* 作者:朱振华
* 完成日期:2015年9月5日
* 版本号:VC6.0
*
* 问题描述:在屏幕上输出:"hello world"
* 输入描述:无
* 程序输出:hello world;
*/
#include<iostream>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
return 0;
}
运行结果:
知识点总结:
巩固简单程序结构认识,成功输出想要的内容。
学习心得:
注意简单程序的程序框架。