- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMethodExamples.java
More file actions
Latest commit
40 lines (25 loc) · 835 Bytes
/
Copy pathMethodExamples.java
File metadata and controls
40 lines (25 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Computer Programming 1
method example
*/
importjava.io.*;
importjava.util.*;
publicclassMethodExamples
{
publicstaticvoidmain(String[] args) {
Scannerreader = newScanner(System.in);
System.out.println("Please enter lenght");
intlength = reader.nextInt();
System.out.println("Please enter width");
intwidth = reader.nextInt();
findAreaRect(length,width);
System.out.println("Please enter circle radius");
intr = reader.nextInt();
findCircleArea(r);
}
publicstaticvoidfindAreaRect(intx, inty){
System.out.println("Rect Area = "+ (x*y));
}
publicstaticvoidfindCircleArea(intr){
System.out.println("circle Area = "+ (r*r)*3.14);
}
}