我刚开始研究如何用 Java 编程语言编写代码。
我遇到了一个问题,告诉我将数字、变量和表达式作为参数传递给过程调用。我遇到的问题是,当我尝试将数字、变量和表达式作为参数传递给过程调用时出现错误(出现 27 个错误)。
下面是我的代码,如果有人能指出我的代码有什么问题,我将不胜感激。谢谢你。
public class test {
// this is the procedure definition
public static int computeCost ( int quantity , int price ) {
return quantity * price;
}
public static void main ( String args[] )
// passing numbers as arguments to the procedure call "cost"
System.out.println ( computeCost ( 7 , 12 ) );
// passing variables as arguments to the procedure call "cost"
int a = 5;
int b = 7;
System.out.println ( computeCost ( a , b ) );
// passing expressions as arguments to the procedure call "cost
System.out.println ( computeCost ( 1 + 2 + 3 + 4, 5 + 6 + 7 + 8 ) );
}
}