【新手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:} 靠,我知道了{:10_277:}
2n 改写成 2 * n
页:
[1]