linear_equations
This commit is contained in:
parent
d035f94c54
commit
b5b7500f98
34
main.c
34
main.c
@ -1,20 +1,18 @@
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
||||
int trojuholnikalgo(int a, int b, int c) {
|
||||
if (((a + b) > c) && ((a + c) > b) && ((b + c) > a)) {
|
||||
printf("Trojuholník sa dá zostrojiť");
|
||||
return 1;
|
||||
}
|
||||
else{
|
||||
} else {
|
||||
printf("Trojuholník sa nedá zostrojiť");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void trojuholniktyp(int a, int b, int c) {
|
||||
//rovnostranny
|
||||
if (a == b && a == c) {
|
||||
@ -53,8 +51,34 @@ void trojuholnik(){
|
||||
|
||||
}
|
||||
|
||||
void rovnicapriamky() {
|
||||
int a = 0;
|
||||
int b = 0;
|
||||
int x = 0;
|
||||
int y = 0;
|
||||
|
||||
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();
|
||||
//trojuholnik();
|
||||
rovnicapriamky();
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user