13.运算

/*

*/
#include "stdio.h"
void main()
{
int a,b,c,x=35;
a=b=c=0;
if(!a)
x--;
else if(b)
x=3;
else
x=4;

printf("%d",x);
}

原文地址:https://www.cnblogs.com/wyj1212/p/9006438.html