本文介绍了将输出什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好.
请告诉我输出的内容并进行解释.
Hi all.
Please tell me what will be output with explanation.
#include "stdio.h"
main ( )
{
int x = 2, y = 5;
if (x < y)
return (x = x+y);
else
printf ("z1");
printf("z2");
}
谢谢.
Thanks.
推荐答案
这篇关于将输出什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!