public static void main(String args[])
时间: 2023-09-11 10:02:52 浏览: 233
import java.io.*; public class FirstPart{ public static void main(String[] args) throws Exception{ System.out.print("The input Fahrenheit is "); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int f = Integer.parseInt(br.re
5星 · 资源好评率100%
这是Java程序中的一个方法,用于指定程序的入口点。它的格式必须完全一样,包括大小写和括号。其中,public代表这个方法是公共的,可以被其他类调用;static表示这个方法是静态的,不需要实例化类就可以使用;void表示这个方法不会返回任何值;main是方法的名称,是固定的;而string[] args是传入方法的参数,可以在程序中使用。
阅读全文