第一讲
第一题
以下程序的功能是借助一个变量交换两个已知数据的值,程序中存在一些错误,修改这些错误并调试程序。
代码片
.
// #include "iostream"
using namespace std;
int main()
{
int x, y, t;
cin >> x >> y;
t = x;
x = y;
t = y;
cout << "x=" << x << "y=" << y << endl;
system("pause");
return 0;
}
第二题
编写一个计算梯形面积的程序。要求梯形的上底、下底和高在定义变量时直接赋值。
代码片
.
// #include "iostream"
using namespace std;
int main()
{
double a,b,h,s;
cout << "请分别输入要计算的梯形的上底、下底、高" << endl;
cin >>a>>b>>h;
s = (a + b)*h / 2;
cout <<