import java.io.*; import java.util.Arrays; public class Main { public static BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); public static BufferedWriter out = new BufferedWriter(new OutputStreamWriter(System.out)); public static StreamTokenizer cin = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in))); public static PrintWriter cout = new PrintWriter(new OutputStreamWriter(System.out)); public static void main(String[] args) throws Exception { int[] t = new int[3]; for (int i = 0; i < 3; i++) { cin.nextToken(); t[i] = (int) cin.nval; } Arrays.sort(t); cout.println(t[2]); cout.flush(); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.3 (Java代码)浏览:1402 |
printf基础练习2 (C语言代码)浏览:605 |
C语言训练-计算一个整数N的阶乘 (C语言代码)浏览:986 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:541 |
三角形 (C++代码)递归(存在大量重复计算,容易出现时间超限)浏览:836 |
简单的a+b (C语言代码)浏览:529 |
Tom数 (C语言代码)浏览:517 |
蛇行矩阵 (C语言代码)浏览:559 |
Pascal三角 (C语言代码)浏览:707 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |