欧美1区2区3区激情无套,两个女人互添下身视频在线观看,久久av无码精品人妻系列,久久精品噜噜噜成人,末发育娇小性色xxxx
鍵盤錄入三個(gè)整數(shù) a、b、c,獲取這三個(gè)整數(shù)中的最大值,并輸出。(要求使用三元表達(dá)式實(shí)現(xiàn))
輸入描述:
輸入任意三個(gè)整數(shù)
輸出描述:
輸出三個(gè)整數(shù)中的最大值
示例1
輸入
100 200 300
輸出
300
加載中...
#include
using namespace std; int main() { int a, b, c; cin >> a; cin >> b; cin >> c; // write your code here...... return 0; }
100 200 300
300