形体的定义和图形的输入输出都是在一定的坐标系下进行的,通常这些坐标系分为:建模坐标系,(),(),规格化设备坐标系和()。
参考答案:用户坐标系;观察坐标系;设备坐标系
Miss Cooper ________ be here. I saw her come in.
A.can
B.may
C.should
D.must
下列给定程序中,函数fun的功能是:实现两个变量值的交换,规定不允许增加语句和表达式。 例如,变量a中的值原为8,b中的值原为3,程序运行后a中的值为3,b中的值为8。 请改正程序中的错误,使它得出正确的结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构! 试题程序: #include<stdlib.h> #include<conio.h> #include<stdio.h> int fun(int*x,int Y) int f; /*******found********/ t=x;x=y; /********found********/ return(y); void main() int a=3,b=8; system("CLS"); printf("%d%d\n",a,b); b=fun(&a,b); printf("%d%d\n",a,b);