linear_equations
This commit is contained in:
parent
d035f94c54
commit
b5b7500f98
56
main.c
56
main.c
@ -1,31 +1,29 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
|
||||||
|
int trojuholnikalgo(int a, int b, int c) {
|
||||||
int trojuholnikalgo(int a, int b, int c){
|
if (((a + b) > c) && ((a + c) > b) && ((b + c) > a)) {
|
||||||
if( ((a+b) > c) && ((a+c) > b) && ((b+c) > a)){
|
|
||||||
printf("Trojuholník sa dá zostrojiť");
|
printf("Trojuholník sa dá zostrojiť");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
printf("Trojuholník sa nedá zostrojiť");
|
printf("Trojuholník sa nedá zostrojiť");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void trojuholniktyp(int a, int b, int c) {
|
||||||
void trojuholniktyp(int a, int b, int c){
|
|
||||||
//rovnostranny
|
//rovnostranny
|
||||||
if(a == b && a == c){
|
if (a == b && a == c) {
|
||||||
printf(" a je rovnostranný\n");
|
printf(" a je rovnostranný\n");
|
||||||
}
|
}
|
||||||
//rovnoramenny
|
//rovnoramenny
|
||||||
else if(a == b || a == c || b == c) {
|
else if (a == b || a == c || b == c) {
|
||||||
printf(" a je rovnoramenný");
|
printf(" a je rovnoramenný");
|
||||||
}
|
}
|
||||||
//pravouhly
|
//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) ){
|
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 pravouhlý");
|
printf(" a je pravouhlý");
|
||||||
}
|
}
|
||||||
//nic z toho
|
//nic z toho
|
||||||
@ -35,17 +33,17 @@ void trojuholniktyp(int a, int b, int c){
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void trojuholnik(){
|
void trojuholnik() {
|
||||||
int a = 0;
|
int a = 0;
|
||||||
int b = 0;
|
int b = 0;
|
||||||
int c = 0;
|
int c = 0;
|
||||||
|
|
||||||
printf("Zadaj číslo:");
|
printf("Zadaj číslo:");
|
||||||
scanf("%d", &a);
|
scanf("%d", & a);
|
||||||
printf("Zadaj číslo:");
|
printf("Zadaj číslo:");
|
||||||
scanf("%d", &b);
|
scanf("%d", & b);
|
||||||
printf("Zadaj číslo:");
|
printf("Zadaj číslo:");
|
||||||
scanf("%d", &c);
|
scanf("%d", & c);
|
||||||
if (trojuholnikalgo(a, b, c) == 1) {
|
if (trojuholnikalgo(a, b, c) == 1) {
|
||||||
trojuholniktyp(a, b, c);
|
trojuholniktyp(a, b, c);
|
||||||
}
|
}
|
||||||
@ -53,8 +51,34 @@ void trojuholnik(){
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(){
|
void rovnicapriamky() {
|
||||||
|
int a = 0;
|
||||||
|
int b = 0;
|
||||||
|
int x = 0;
|
||||||
|
int y = 0;
|
||||||
|
|
||||||
trojuholnik();
|
printf("Zadaj A:");
|
||||||
|
scanf("%d", & a);
|
||||||
|
printf("Zadaj B:");
|
||||||
|
scanf("%d", & b);
|
||||||
|
|
||||||
|
printf("Rovnica priamky je y = %d * x + %d\n", a, b);
|
||||||
|
|
||||||
|
printf("Zadaj súradnicu bodu x:");
|
||||||
|
scanf("%d", & x);
|
||||||
|
printf("Zadaj súradnicu bodu y:");
|
||||||
|
scanf("%d", & y);
|
||||||
|
|
||||||
|
if (((a * x) + b) == y) {
|
||||||
|
printf("Bod [%d; %d] leží na priamke y = %d * x + %d.\n", x, y, a, b);
|
||||||
|
} else {
|
||||||
|
printf("Bod [%d; %d] neleží na priamke y = %d * x + %d.\n", x, y, a, b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
|
||||||
|
//trojuholnik();
|
||||||
|
rovnicapriamky();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user