1 / 17

CS110 Programming Language I Lab 9 : Methods II Computer Science Department Spring 2014

CS110 Programming Language I Lab 9 : Methods II Computer Science Department Spring 2014. ( V ariables Scope ). Find Errors ( If Any) : class ScopeEx { public static void main(String args []) { int num = 1; { // creates a new scope int num = 2; } } //end main

mindy
Download Presentation

CS110 Programming Language I Lab 9 : Methods II Computer Science Department Spring 2014

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS110 Programming Language I • Lab 9:Methods II Computer Science Department Spring 2014 By: TA. Nora Alaqeel

  2. ( Variables Scope ) FindErrors (If Any): classScopeEx { publicstaticvoid main(String args[]) { int num = 1; { // creates a new scope intnum = 2; } } //end main } //end class By: TA. Nora Alaqeel

  3. ( Variables Scope ) FindErrors (If Any): classScopeEx { publicstaticvoid main(String args[]) { { // creates a new scope int num = 1; } { // creates a new scope int num = 2; } } //end main } //end class By: TA. Nora Alaqeel

  4. ( Variables Scope ) FindErrors(If Any): classScopeEx { publicstaticvoid main(String args[]) { int n1; n1 = 10; if(n1 == 10) { // start new scope int n2 = 20; System.out.println("n1 and n2 : "+ n1 +" "+ n2); } System.out.println("n1 is " + n1); System.out.println(”n2 is " + n2); } } By: TA. Nora Alaqeel

  5. ( Method Overloading ) (T or F) Tell whether the following method overloading is true or false: Public static void myMethod (intfirstArg, intsecondArg) { ….. } Public static void myMethod(char firstArg, intsecondArg) { ….. } By: TA. Nora Alaqeel

  6. ( Method Overloading ) (T or F) Tell whether the following method overloading is true or false: Public static void myMethod (intfirstArg, intsecondArg) { ….. } Public static void myMethod(intfirstArg) { ….. } By: TA. Nora Alaqeel

  7. ( Method Overloading ) (T or F) Tell whether the following method overloading is true or false: Public static void myMethod (intfirstArg, double secondArg) { ….. } Public static void myMethod(double firstArg, intsecondArg) { ….. } By: TA. Nora Alaqeel

  8. ( Method Overloading ) (T or F) Tell whether the following method overloading is true or false: Public static void myMethod (intfirstArg, intsecondArg) { ….. } Public static void myMethod(int first, intsecond) { ….. } By: TA. Nora Alaqeel

  9. ( Method Overloading ) (T or F) Tell whether the following method overloading is true or false: Public static void myMethod (intfirstArg, intsecondArg) { ….. } Public static String myMethod (intfirstArg, intsecondArg) { ….. } By: TA. Nora Alaqeel

  10. ( Returning Values + Calling ) Problem Description (Room Type)Write a program with a method named computeRoomAreawhich takes two float arguments entered by the user, as the lengthand widthof a room. The method must calculate and returns the area of the room. In the main() method, you should display the result, and one of the following statements: This is a Huge Room. (If the room’s area larger than 100) This is a Tiny Room. (Otherwise – If smaller or equal to 100) Hint: Area=length * width Sample Outputs: Please Enter length and width of the room: 12 10 The Area of the Room= 120 This is a Huge Room. By: TA. Nora Alaqeel

  11. Code Skelton import java.util.Scanner; public class Room { public static void main(String[] args) { Scanner input = new Scanner(System.in); float length, width, area; System.out.print( "Please Enter length and width of the room: ") ; length = input.nextFloat(); width = input.nextFloat(); area = computeRoomArea(length, width); System.out.println( "The Area of the Room = " + area ); if (area > 100) System.out.println( "This is a Huge Room." ); else System.out.println( “This is a Tiny Room." ); } //end main By: TA. Nora Alaqeel

  12. Code SkeltonCont. public static float computeRoomArea(float l , float w) { return (l * w); } //end computeRoomArea } // end class By: TA. Nora Alaqeel

  13. Evaluation (Print Grade)Write a program with a method named printGradewhich takes one float argument entered by the user, as the user’s score. The method must returns the grade of the student. In the main() method, you should print the grade. The method header should be as the following: public static char printGrade(double score) By: TA. Nora Alaqeel

  14. Sample Output: Please Enter Your Score: 87 Your Grade Is: B By: TA. Nora Alaqeel

  15. Q1: Write a method named lastDigit that returns the last digit of an integer. For example, lastDigit(3572) should return 2. It should work for negative numbers as well. For example, lastDigit(-947) should return -7. Write aprogram to test your method.

  16. Q2:Write a program containing a method named countChars that receives a string read from the user, and count the number of characters in this string. Print out the result on main method.

  17. Q3: Write a method named swapPairs that accepts a String as a parameter and returns that String with each pair of adjacent letters reversed. If the String has an odd number of letters, the last letter is unchanged. For example, the call swapPairs("forget") should return "ofgrte" and the call swapPairs("hello there") should return "ehllohtree". Write aprogram to test your method.

More Related