Rev 160 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log
#include <stdio.h>
float nejvetsi (float a,b,c)
float nejvetsi (float a,float b,float c)
{
if (a>b)
if (a>c) return (a);
}