// 三目.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <stdlib.h>
int _tmain1(int argc, _TCHAR* argv[])
{
//1?system("calc"):system("notepad");
//-1?system("calc"):system("notepad");
//第一表达式为非0执行第二个 如果是0就执行第三个
//在C语言中成立就是除了0以外的数
0?system("calc"):system("notepad");
return 0;
}
void main2()
{
int a=100;
int b=99;
int c=a>b?a:b;//取两个数中间的最大值 a>b c取100;
//否则取b的值
printf("%d\n",c);
getchar();
}
void main()
{
//三目运算符从右到左进行
int a=10;
int b=111;
int c=11;
int d=13;
/*int e=a>b?a:b;
e=e>c?e:c;
e=e>d?e:d;*/
int e=a>b?a:b<c?c:a>b?a:b<d?d:a>b?a:b<c?c:a>b?a:b;
printf("%d\n",e);
getchar();
//
#include "stdafx.h"
#include <stdlib.h>
int _tmain1(int argc, _TCHAR* argv[])
{
//1?system("calc"):system("notepad");
//-1?system("calc"):system("notepad");
//第一表达式为非0执行第二个 如果是0就执行第三个
//在C语言中成立就是除了0以外的数
0?system("calc"):system("notepad");
return 0;
}
void main2()
{
int a=100;
int b=99;
int c=a>b?a:b;//取两个数中间的最大值 a>b c取100;
//否则取b的值
printf("%d\n",c);
getchar();
}
void main()
{
//三目运算符从右到左进行
int a=10;
int b=111;
int c=11;
int d=13;
/*int e=a>b?a:b;
e=e>c?e:c;
e=e>d?e:d;*/
int e=a>b?a:b<c?c:a>b?a:b<d?d:a>b?a:b<c?c:a>b?a:b;
printf("%d\n",e);
getchar();
}
可以代替if else 语句