我试图制作一个简单的 c 计算器,因为我是一个新手,并认为这将是一个好主意。这是我的代码:
#include <stdio.h>
main()
{
char b;
int a,c,d;
printf("Please enter your first number: ");
scanf("%d",&a);
printf("Please enter your second number: ");
scanf("%d",%c);
printf("Enter your operation");
scanf("%c",&b);
if (b == 'a')
{
d = a + c;
printf("The answer is: %d",d);
}
}
当我编译代码时,这是我得到的错误/警告:
D:...|4|warning: return type defaults to 'int'|
D:...||In function 'main':|
D:...|10|error: expected expression before '%' token|
有人可以帮忙吗?