Home Segments Top Top Previous Next

101: Mainline

You define the movieRating method as follows:

public class Demonstrate { 
 public static int movieRating (int s, int a, int d) { 
  return s + a + d; 
 } 
 // Definition of main goes here 
}