少哪两个参数
#include <stdio.h>
int main(void)
{
int ten = 10, two = 2;
printf("%d minus %d is %d\n", ten ); /* 少写了两个参数 */
getchar(); /* 等待用户按回车 */
return 0;
}
----------------解决方案--------------------------------------------------------
printf("%d minus %d is %d\n", ten ,two,ten-two);
----------------解决方案--------------------------------------------------------
少了
变量的什么?
10-2怎么表达、。
----------------解决方案--------------------------------------------------------
ten-two
----------------解决方案--------------------------------------------------------
顶2楼咯啊!
----------------解决方案--------------------------------------------------------