本文介绍了什么是这个程序的输出,如果0(零)然后如何。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#包括< stdio.h中> 
int main(void)
{
int a = 1,b = 2,c = 3;

a = b == c;
printf(%d,a);

printf(\ n);


}





我的尝试:



这个程序的输出是什么,如果为0(零)那么how.?
解决方案

#include<stdio.h>
int main(void)
{
	int a=1, b=2,c=3;
		
	a=b==c;
  printf("%d",a);

 printf("\n");

    
}



What I have tried:

what is output of this program and if 0(zero ) then how.?
解决方案


这篇关于什么是这个程序的输出,如果0(零)然后如何。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 18:31