📄 test4.java
字号:
import java.io.*;
import java.*;
public class test4{
public static void main(String args[]) throws IOException
{
BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
int i,j,k;
int m;
i=Integer.parseInt(stdin.readLine());
System.out.println("");
j=Integer.parseInt(stdin.readLine());
System.out.println("");
k=Integer.parseInt(stdin.readLine());
System.out.println("");
if(i>j)
if(i>k)
{
System.out.print(i);
}
else
{
System.out.print(k);
}
else if(j>k)
{
System.out.print(j);
}
else
{
System.out.print(k);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -