跟着书上写的代码,在vscode中编译不了?

大家帮忙看看,大一自学C语言,跟着书本写的代码,怎么编译不了
#include<stdio.h>
#define Height 10
int calculate(int Long,int Width);
int main()
{
int m_Long;
int m_Width;
int result;

printf("长方体的高为%d\n",Height);

printf("请输入长方体的长\n");
scanf("%d",&m_Long);

printf("请输入长方体的宽\n");
scanf("%d",&m_Width);

result=calculate(m_Long,m_Width);

printf("长方体的体积是:");
printf("%d",result);

return 0;

}
int calcuate(int Long,int Width)
{
int result=LongWidthHeight;
return result;
}

img

需要设置编译环境,还要下载c++拓展,建议你用deve

img


代码复制丢了几个符号