c语言小白问点题

#include <stdio.h>
int main()
{
  int x, y;
  x = 10;
  y = -3;
  printf("x+y=%d\n",    );
  // printf("x-y=%d\n", );
  // printf("x*y=%d\n", );
  // printf("x/y=%d\n", );
  // printf("x%y=%d\n", );
  return 0;
}
这题怎么做啊

慕田峪0388121
浏览 975回答 1
1回答

qq_莫非

#include <stdio.h>int main() {  int x, y;  x = 10;  y = -3;  printf("x+y=%d\n", x+y);  // printf("x-y=%d\n", );  // printf("x*y=%d\n", );  // printf("x/y=%d\n", );  // printf("x%y=%d\n", );   return 0;}这里 printf("x+y=%d\n", x+y);
打开App,查看更多内容
随时随地看视频慕课网APP