本文介绍了添加输出不正确的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
#包括< stdio.h中>
main()
{
int a,b,c = a + b;
printf(输入a \ n的值);
scanf(%d,& a);
printf(输入b\ n的值);
scanf(%d,& b);
printf(a + b =%d,c);
system(暂停);
}
我的尝试:
我尝试使用不同的输入,但输出显示1总是针对不同的输入
解决方案
#include<stdio.h> main() { int a,b,c=a+b; printf("Enter the value for a\n"); scanf("%d, &a"); printf("Enter the value for b\n"); scanf("%d, &b"); printf("a+b=%d", c); system ("pause"); }
What I have tried:
I tried with different inputs but the output is showing 1 always for different inputs
解决方案
这篇关于添加输出不正确的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!