-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMethodExamples.java
More file actions
40 lines (25 loc) · 835 Bytes
/
MethodExamples.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
*/
import java.io.*;
import java.util.*;
public class MethodExamples
{
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
System.out.println("Please enter lenght");
int length = reader.nextInt();
System.out.println("Please enter width");
int width = reader.nextInt();
findAreaRect(length,width);
System.out.println("Please enter circle radius");
int r = reader.nextInt();
findCircleArea(r);
}
public static void findAreaRect(int x, int y){
System.out.println("Rect Area = "+ (x*y));
}
public static void findCircleArea(int r){
System.out.println("circle Area = "+ (r*r)*3.14);
}
}