第2周项目1-宣告“主权”

/*  
*Copyright(C) 2016,计算机与控制工程学院  
*All rights reserved.  
*文件名:test.cpp  
*作者:张志新  
*完成日期:2016年3月8日  
*版本号:v1.0  
*  
*问题描述:输出“hello world!”. 
*/  

#include<iostream>
using namespace std;
int main()
{
	cout<<"hello world!"<<endl;
	return 0;
}


第2周项目1-宣告“主权”_第1张图片

学习心得:

   刚开始写程序希望可以在学习中不断进步,hello world,I coming。

你可能感兴趣的:(第2周项目1-宣告“主权”)