#include <algorithm> #include <iostream> int main() { int a, b, c; // 输入三个整数 std::cin >> a >> b >> c; // 使用三元表达式获取最大值 int max_value = (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); int d = std::max(a, b); int e = std::max(d, c); // 输出结果 std::cout<< e &l...