another_one
This commit is contained in:
parent
6b318a626f
commit
d035f94c54
15
main.c
15
main.c
@ -5,7 +5,7 @@
|
||||
|
||||
int trojuholnikalgo(int a, int b, int c){
|
||||
if( ((a+b) > c) && ((a+c) > b) && ((b+c) > a)){
|
||||
printf("Trojuholník sa da zostrojit");
|
||||
printf("Trojuholník sa dá zostrojiť");
|
||||
return 1;
|
||||
}
|
||||
else{
|
||||
@ -22,15 +22,15 @@ void trojuholniktyp(int a, int b, int c){
|
||||
}
|
||||
//rovnoramenny
|
||||
else if(a == b || a == c || b == c) {
|
||||
printf("a je rovnoramenný\n");
|
||||
printf(" a je rovnoramenný");
|
||||
}
|
||||
//pravouhly
|
||||
else if ( (pow(a, 2) + pow(a, 2)) == pow(c, 2) || (pow(b, 2) + pow(c, 2)) == pow(a, 2) || (pow(a, 2) + pow(c, 2)) == pow(b, 2) ){
|
||||
printf(" a je pravouhly");
|
||||
printf(" a je pravouhlý");
|
||||
}
|
||||
//nic z toho
|
||||
else {
|
||||
printf(" a je roznostranny");
|
||||
printf(" a je rôznostranný");
|
||||
}
|
||||
|
||||
}
|
||||
@ -40,15 +40,16 @@ void trojuholnik(){
|
||||
int b = 0;
|
||||
int c = 0;
|
||||
|
||||
printf("Zadaj cislo:");
|
||||
printf("Zadaj číslo:");
|
||||
scanf("%d", &a);
|
||||
printf("Zadaj cislo:");
|
||||
printf("Zadaj číslo:");
|
||||
scanf("%d", &b);
|
||||
printf("Zadaj cislo:");
|
||||
printf("Zadaj číslo:");
|
||||
scanf("%d", &c);
|
||||
if (trojuholnikalgo(a, b, c) == 1) {
|
||||
trojuholniktyp(a, b, c);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user