注意:此页面搜索的是所有试题
题目内容
(许昌学院面向对象程序设计)
[应用题,7.6分] 以下程序输入三个整数值给a,b,c,程序把b中的值给a,把c中的值给b,把a中的值给c,然后输出a,b,c的值。请填空。
#include
main()
{
int a,b,c;
int temp;
cout<<"Enter a,b,c:";
cin>>a>>b>>c;
temp=[ ];
a=b;
b=[ ];
[ ]
cout<<"a="<<a<<" b="<<b<<" c="<<>
}
#include
main()
{
int a,b,c;
int temp;
cout<<"Enter a,b,c:";
cin>>a>>b>>c;
temp=[ ];
a=b;
b=[ ];
[ ]
cout<<"a="<<a<<" b="<<b<<" c="<<>
}
参考答案