我已经安装了 vs 代码扩展 Code Runner 来帮助我 运行 C 语言程序,但它没有 运行 我的代码
I've installed the vs code extension Code Runner to help me run C language programs but it doesn't run my code
#include <stdio.h>
#include <conio.h>
int main()
{
float a,b;
int c;
printf("Enter Number a\n ");
scanf("%f",&a);
printf("Enter num b \n");
scanf("%f",&b);
c=a+b;
printf("The sum is %d",c);
return 0;
}
问题已经解决,感谢stack overflow的社区,我是编程初学者,刚开始学习c,对此一无所知,但现在我被禁止提问
您应该将代码 运行ner 输出更改为 Terminal
转到 vscode 设置并在终端中搜索代码 运行nrer : 运行 并检查它
#include <stdio.h>
#include <conio.h>
int main()
{
float a,b;
int c;
printf("Enter Number a\n ");
scanf("%f",&a);
printf("Enter num b \n");
scanf("%f",&b);
c=a+b;
printf("The sum is %d",c);
return 0;
}
问题已经解决,感谢stack overflow的社区,我是编程初学者,刚开始学习c,对此一无所知,但现在我被禁止提问
您应该将代码 运行ner 输出更改为 Terminal
转到 vscode 设置并在终端中搜索代码 运行nrer : 运行 并检查它