选择题:下面程序的功能是不用第三个变量,实现两个数的对调操作。 #include main() { int

题目内容:
下面程序的功能是不用第三个变量,实现两个数的对调操作。
#include
main()
{ int a,b;
scanf("%d%d",&a,&b);
printf("a=%d,b=%d\n",a,b);
a= ① ;
b= ② ;
a= ③ ;
printf("a=%d,b=%d\n",a,b);
}
参考答案:

下面程序的功能是将字符串s中的每个字符按升序的规则插到数组a中, 字符串a已排好序。 #includ

下面程序的功能是将字符串s中的每个字符按升序的规则插到数组a中, 字符串a已排好序。 #include main() { char a[20]="cehiknq

查看答案