When you follow up, it is improper to supply more details that were missed out in the interview.
查看答案
It is okay to follow up the flow of the interview via email or on phone.
A. 对
B. 错
以下程序输入三个整数值给a、b、c,程序把b中的值给a,把c中的值给b,把a中的值给c,交换后输出a、b、c的值。请填空:#include main(){ int a,b,c, m ;printf(“Enter a,b,c:”);scanf(“%d,%d,%d”,(1));;a=b;b=c;;printf(“a=%d,b=%d,c=%d\n”,a,b,c);}
设a = 3 , b = 4 , c = 5 , d = 1.2 , e = 2.23 , f = – 43.56 , 编写程序,使程序输出为:a = 3 , b = 4, c = * * 5d = 1.2e = 2.23f = – 43.5600* *