小鑫の日常系列故事(一)——判断对错

#include <stdio.h>

int main()
{
    int a, b, c;
    scanf("%d %d",&a, &b);
    scanf("%d",&c);
    if(a + b == c)
    {
        printf("YES\n");
    }
    else
    {
        printf("NO\n");
    }
    return 0;
}

相关文章:

  • 2021-05-02
  • 2021-11-04
  • 2021-10-30
  • 2021-07-27
  • 2021-10-09
  • 2021-05-20
  • 2022-01-17
猜你喜欢
  • 2021-08-30
  • 2021-04-30
  • 2021-08-18
  • 2021-05-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案