一个ACM的A+B问题因为我是初学者,想试试ACM,但是A+-查字典问答网
分类选择

来自唐保健的问题

  一个ACM的A+B问题因为我是初学者,想试试ACM,但是A+B就wronganswer了ProblemDescriptionCalculateA+B.InputEachlinewillcontaintwointegersAandB.Processtoendoffile.OutputForeachcase,outputA+Binoneline.SampleInput1

  一个ACM的A+B问题

  因为我是初学者,想试试ACM,但是A+B就wronganswer了

  ProblemDescription

  CalculateA+B.

  Input

  EachlinewillcontaintwointegersAandB.Processtoendoffile.

  Output

  Foreachcase,outputA+Binoneline.

  SampleInput

  11

  SampleOutput

  2

  下面是我写的

  #include

  intmain()

  {

  inta,b,sum;

  scanf("%d,%d",&a,&b);

  sum=a+b;

  printf("%d",sum);

  return0;

  }

  为什么会wrong呢,那该怎么写呢,用C写

1回答
2020-07-17 17:02
我要回答
请先登录
安继刚

  #include

  intmain()

  {

  inta,b,sum;

  scanf("%d%d",&a,&b);//去掉逗号,题目中是以空格分开的

  sum=a+b;

  printf("%d",sum);

  return0;

  }

2020-07-17 17:04:13

最新问答

推荐文章

猜你喜欢

附近的人在看

推荐阅读

拓展阅读

  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  •