C++编程:输入两个整数,用条件表达式求出它们之中的大者并输出。

2024-12-21 02:43:38
推荐回答(1个)
回答1:

#include
void main()
{
int a,b,t;
cin>>a>>b;
t=a>b?a:b;
cout<}