提问人:Sofia 提问时间:7/18/2023 最后编辑:ChrisSofia 更新时间:7/18/2023 访问量:52
我无法处理错误,一旦我在打印语句中使用带有换行符的变量“n”即“\n”,就会弹出错误
i am unable to handle a error, which pops up as soon as i use variable "n" with newline character i.e "\n" in print statement
问:
当我在Visual Studio Code的print语句中使用带有换行符的变量“n”(即“\n”)时,我遇到了一个未知错误
int main(){
int n;
printf("enter the number n\n");
scanf("%d", &n);
int sum=0;
for(int i=1; i<=10;i++){
int prod=i*n;
sum=sum+prod;
}
printf("sum of multiplication table is %d",sum);
return 0;
}
我收到如下错误:
Program 'sum.exe' failed to run: Unknown error (0xfffffffe)At line:1 char:120
+ ... tutorial course\" ; if ($?) { gcc sum.c -o sum } ; if ($?) { .\sum }
+ ~~~~~.
At line:1 char:120
+ ... tutorial course\" ; if ($?) { gcc sum.c -o sum } ; if ($?) { .\sum }
+ ~~~~~
+ CategoryInfo : ResourceUnavailable: (:) [], ApplicationFailedException
+ FullyQualifiedErrorId : NativeCommandFailed
我无法理解如何处理这个问题,请帮助我解决这个问题
我尝试用换行符“\n”编写变量“n”,但它向我显示了未知错误,我希望得到我的代码的所需输出,即乘法表的总和
答: 暂无答案
评论
#include <stdio.h>
./sum.exe
$?
$LASTEXITCODE
#include <stdio.h>