1. 熟悉C++6.0编译系统的常用功能。
2. 学会使用C++6.0编译系统实现简单的C++程序。
3. 熟悉C++程序的基本结构,学会使用简单的输入/输出操作。
二、实验内容
1.编译下列程序,改正所出现的错误信息,并写出输出结果。
/sy1_1.cpp
main()
{
cout<<"This is a program."
}
修改程序如下:
#include
using namespace std;
int main(void)
{
cout<<"This is a program.";
return 0;
}
# include
using namespace std;
int main( )
{
cin>>x;
inty=x*x;
cout<<"y= <
修改程序如下:
#include
using namespace std;
int main( )
{
int x;
cin>>x;
int y=x*x;
cout<<"y="<
正确程序运行结果如下:
(3)
# include< iostream>
using namespace std;
int main( )
{
int a,b;
a= 7;
int s = a + b;
cout<<"a+ b= "<
运行结果如下图所示:
修改程序如下:
#include
using namespace std;
int main( )
{
int a,b;
a=7;
cin>>b;
int s=a+b;
cout<<"a+b="<
编写的程序如下:
#include
using namespace std;
int main(void)
{
int the_number;
cout<<"please input an integer:"<>the_number;
cout<<"the_number="<
运行的结果如下:
实验小结
本次实验过程中,我出现了很多问题,首先就是codeblocks软件在我的电脑上使用不了,怎么弄都弄不好,然后去借了同学的电脑来做,在实验中,我基本掌握了cout和cin的使用,也熟悉了许多编译系统的常用功能,能够利用编译系统实现简单的c++程序。在做实验时,总是粗心大意的忘记写符号之类的,但做了几遍之后就没那么容易忘记了,程序的输入也更熟练了。希望自己以后能在做实验的过程中获得更多的知识与技能。