-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrojuhelnik.java
More file actions
53 lines (51 loc) · 1.22 KB
/
Trojuhelnik.java
File metadata and controls
53 lines (51 loc) · 1.22 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
class Trojuhelnik
{
int a, b, c;
public Trojuhelnik(int aa, int bb, int cc)
{
a = aa;
b = bb;
c = cc;
}
public Trojuhelnik(int aa, int bb)
{
this(aa, bb, bb);
}
public Trojuhelnik(int aa)
{
this(aa, aa, aa);
}
public boolean existuje()
{
if (a + b > c && a + c > b && b + c > a)
return true;
else
return false;
}
public int obvod()
{
if (this.existuje())
return a + b + c;
else
return -1;
}
public static void main(String [] args)
{
Trojuhelnik t1, t2, t3, t4, t5;
t1 = new Trojuhelnik(10,1,1); t2 = new Trojuhelnik(3,4,5);
t3 = new Trojuhelnik(3,4); t4 = new Trojuhelnik(3);
t5 = new PravouhlyTrojuhelnik(3,4);
if (t1.existuje()) System.out.println("t1 exist"); else System.out.println("t1 ne exist");
if (t2.existuje()) System.out.println("t2 exist"); else System.out.println("t2 ne exist");
System.out.println("t3 má obvod: " + t3.obvod()); //11
System.out.println("t4 má obvod: " + t4.obvod()); //9
System.out.println("t5 má obvod: " + t5.obvod()); //12
}
}
class PravouhlyTrojuhelnik extends Trojuhelnik
{
public PravouhlyTrojuhelnik(int aa, int bb)
{
super(aa, bb, (int) Math.sqrt(aa * aa + bb * bb));
}
}