Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Vzdalenost
#include <stdio.h> #include <math.h> //sqrt = odmocnina double vzdalenost(double aX, double aY) //aX a aY jsou argumenty funkce { //return 42; //musí tady být 42?// 42 je odpoved na smysl zivota return sqrt((aX * aX) + (aY * aY)); } int main(void) { printf("Zadejte hodnoty X a Y\n"); double x, y; if(scanf("%lf%lf", &x, &y) != 2) //vraci pocet nactenych parametru { printf("Neplatny vstup, konec programu"); return 1; } printf("x: %lf, y: %lf\n", x, y); double r = vzdalenost(x, y); printf("\nVysledna vzdalenost je: %lf\n", r); return 0; } //-Wall -std=gnu99 -O2 -o a.out source_file.c -lm // ^^^ //do clangu dopsat do compiler args ----------||| #if 0 Zlatej assembler já assembluju tak maximálně LEGO LULW #endif
run
|
edit
|
history
|
help
0
Regiones A y B
definice funkce
Herout (67) - 11
Hello world
Herout (67) - 13
Příklad 3 min max #define
Herout (67) - 2
pointer
UDP - Pytagorova veta
Vending machine