过一点只能画出一条直线.______.(判断对错)
如图所示:
,
过一点能画出无数条直线.
所以过一点只能画出一条直线说法错误.
故答案为:错误.
图Ⅰ—6中,A—A移出剖面图的正确画法是______。
请使用VC6或使用[答题]菜单打开考生文件夹projl下的工程proj1,此工程包含一个源程序文件proj1.cpp。其中位于每个注释“//ERROR****found****”之后的一行语句存在错误。请改正这些错误,使程序的输出结果为:You are nght. 注意:只修改注释“//ERROR ****found****”的下一行语句,不要改动程序中的其他内容。 //proj1.cpp #include <iostream> using namespace std; class MyClass public: MyClass(int x):number (x) //ERROR **********found********** ~MyClass(int x) //ERROR **********found********** void Judge(MyClass &obj); private: int number; void Judge(MyClass &obj) if(obj.number==10) cout<<"You are right."<<endl;else cout<<"Sorry"<<endl; int main() //ERROR **********found********** MyClass object; Judge(object); return 0;