用(條件式)?條件成立時執行的:不成立時執行的;判斷式就OK了
#include <iostream>using namespace std;int main(){ int a, b; cin>>a>>b; (a>b)?cout<<a<<endl:cout<<b+1<<endl;}