我已经成功编译了我的代码,但它说:
注意:您也可以通过键入“run”和任何命令行参数来运行您的应用程序。 启动没有 args 的应用程序... 检查库... 正在复制文件... 正在处理文件... 正在编译... 无法压缩二进制文件! 应用程序退出。
我希望我的代码让用户输入三个数字,中间有空格,并让它们相乘,所以这是我的代码:
#include <stdio.h>
#include <stdlib.h>
int mult( int x, int y, int z) {
return x * y * z;
int main()
{
int x;
int y;
int z;
printf("Input two integers to be multiplied: ");
scanf("%d", &x);
scanf("%d", &y);
scanf("%d", &z);
printf("The product of the three numbers is %d\n", mult( x, y, z) );
getchar();
}
int mult (int x, int y, int z)
{
return x * y * z;
}
}
我使用compilr.com作为我的开发平台。