返回列表 發帖

TQC+ 109 變數範圍



提示:
  1. public class JPD01 {
  2.   
  3.     public static int adder (__________________) {
  4.         return _______________;                                    
  5.     }
  6.    
  7.     public static int gameRating (int s, int a, int e) {
  8.         return adder(__________________);                                      
  9.     }
  10.   
  11.     public static void main (String argv[]) {
  12.         int skill = 6, action = 9, excitment = 8, result;
  13.         result = gameRating(skill, action, excitment);
  14.         System.out.print("The rating of the game is ");
  15.         System.out.println(result);                        
  16.     }
  17. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表