class hanshudingyi
{
public static void main(String[] args)
{
int y = getResult(4);
System.out.println("y="+y);
}
}
/*
修饰符 返回值类型 函数名(参数类型 形式参数1,参数类型 形式参数2)
{
执行语句;
return 返回值;
}
函数只有被调用才会运行
*/
public static int getResult(int x)
{
return x*3+5;
}
int不是大写的 为什么会出现这种情况?
|
|