C++程序设计课件 设计制作:徐龙琴 1
1.最初的计算机编程语言是
a.机器语言 b.汇编语言
c.高级语言 d.低级语言
2.程序应该必须包含的部分是
a.头文件 b.注释
c.高级语言 d.数据结构和算法
3.结构化程序设计的基本结构不包含以下哪项?
a.顺序 b.选择
c.跳转 d.循环
4.下列哪项不是面向对象程序设计的主要特征?
a.封装 b.继承
c.多态 d.结构
5,C++源文件的扩展名为
A),cpp B),obj C),txt D),exe
一,选择题
a
d
c
d
A
C++程序设计课件 设计制作:徐龙琴 2
6,C++的合法注释是
A) /*This is a C program/* B) // This is a C program
C),This is a C program” D) //This is a C program//
B
C++程序设计课件 设计制作:徐龙琴 3
二 写出下面程序的运行结果
#include <iostream.h>
#include <math.h>
void main()
{
int a,b,c;
cout <<"input two numbers:\n”;
cin >>a >>b;
c = a*b+2*a;
cout <<"the result is:” <<c <<endl;
c=a*c;
cout <<"the new number is:” <<c <<endl;
}
其运行结果为:
input two numbers:
2 4
the result is:12
the new number is:24
C++程序设计课件 设计制作:徐龙琴 4
三 编写程序,输出下列语句
My name is LiPing.
I am a girl.I am twenty.
#include <iostream.h>
其程序为:
void main()
{
cout <<"My name is LiPing.\n”;
cout <<" I am a girl.”<<“I am twenty.”<<endl;
}
1.最初的计算机编程语言是
a.机器语言 b.汇编语言
c.高级语言 d.低级语言
2.程序应该必须包含的部分是
a.头文件 b.注释
c.高级语言 d.数据结构和算法
3.结构化程序设计的基本结构不包含以下哪项?
a.顺序 b.选择
c.跳转 d.循环
4.下列哪项不是面向对象程序设计的主要特征?
a.封装 b.继承
c.多态 d.结构
5,C++源文件的扩展名为
A),cpp B),obj C),txt D),exe
一,选择题
a
d
c
d
A
C++程序设计课件 设计制作:徐龙琴 2
6,C++的合法注释是
A) /*This is a C program/* B) // This is a C program
C),This is a C program” D) //This is a C program//
B
C++程序设计课件 设计制作:徐龙琴 3
二 写出下面程序的运行结果
#include <iostream.h>
#include <math.h>
void main()
{
int a,b,c;
cout <<"input two numbers:\n”;
cin >>a >>b;
c = a*b+2*a;
cout <<"the result is:” <<c <<endl;
c=a*c;
cout <<"the new number is:” <<c <<endl;
}
其运行结果为:
input two numbers:
2 4
the result is:12
the new number is:24
C++程序设计课件 设计制作:徐龙琴 4
三 编写程序,输出下列语句
My name is LiPing.
I am a girl.I am twenty.
#include <iostream.h>
其程序为:
void main()
{
cout <<"My name is LiPing.\n”;
cout <<" I am a girl.”<<“I am twenty.”<<endl;
}