简单的c++程序(实验一)

一、实验目的和要求:

1、熟悉Visual c++6.0编译系统的常见功能;

2、学会使用Visual  C++6.0编译系统实现的简单c++程序;

3、熟悉c++程序的基本结构,学会使用简单的输入/输出操作;

二、实验内容及实验结果:

1、

(1)//sy1_1.pp
main(){
	cout<<"this is a program.";
}
错误提示:


更正实验:

方案一:

//sy1_1.pp
#include
using namespace std;
main(){

	cout<<"this is a program.";
	return 0;
}

方案二:

//sy1_1.pp
#include
main(){


	std::cout<<"this is a program.";
	return 0;


实验结果:



//sy1_2.pp <2>
#include
using namespace std;
main(){
	cin>>x;
	int y=x*x;
	cout<<"y=<

错误提示:


更正实验:

//sy1_2.pp <2>
#include
using namespace std;
main(){
	int x;
	cin>>x;
	int y=x*x;
	cout<<"y=<

实验结果:

简单的c++程序(实验一)_第1张图片


//sy1_3.pp <3>
#include
using namespace std;
main(){
	int a,b;
	a=7;
	int s=a+b;
	cout<<"a+b="<

错误提示:


更正实验:

//sy1_3.pp <3>
#include
using namespace std;
main(){
	int a,b;
	a=7;
	b=0;
	int s=a+b;
	cout<<"a+b ="<
实验结果:
 
  

2、

#include
using namespace std;
main(){
int the_number;
cout<<"请输入一个整数;";
cin>>tne_number
return 0;
}


三、实验总结:

            在本次实验中如果只是看题目很难发现实验的错误,找不出错误是就只能通过Visual c++6.0运行代码找出其中的错误并改正。

你可能感兴趣的:(简单的c++程序(实验一))