代码
提交代码
#include <stdio.h>
int main()
{
int x = 1, y = 2, z = 3;
if (x > 0)
{
if (y > z)
{
printf("语句1\n");
}
else
{
printf("语句2\n");
}
}
else
{
if (z > 1)
{
printf("语句3\n");
}
}
return 0;
}
运行结果