hello? 发表于 2022-10-4 23:35:56

【新手c语言】

代码如下,是个解决鸡兔同笼问题的程序
#include <stdio.h>
#include <stdlib.h>
int main()
{
    int n,m;
    scanf("%d%d",&n,&m);
    n-=(m-2n)/2;
    m=(m-2n)/2;
    printf("%d%d",n,m);
    return 0;
}


报错:
--运行失败--
Command failed: "C:\AhaCpp\resources\core\bin\gcc.exe" "C:\AhaCpp\resources\code\鸡兔同笼.c" -o "C:\AhaCpp\resources\code\鸡兔同笼.exe"
C:\AhaCpp\resources\code\鸡兔同笼.c: In function 'main':
C:\AhaCpp\resources\code\鸡兔同笼.c:7:11: error: invalid suffix "n" on integer constant
   n-=(m-2n)/2;

谢谢大佬们{:10_277:}

hello? 发表于 2022-10-4 23:36:53

靠,我知道了{:10_277:}

Twilight6 发表于 2022-10-5 08:12:57



2n 改写成 2 * n

页: [1]
查看完整版本: 【新手c语言】