Subversion Repositories svnkaklik

Rev

Rev 160 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 160 Rev 161
Line 1... Line 1...
1
#include <stdio.h>
1
#include <stdio.h>
2
 
2
 
3
 
3
 
4
float nejvetsi (float a,b,c)
4
float nejvetsi (float a,float b,float c)
5
{
5
{
6
  if (a>b)
6
  if (a>b)
7
  {
7
  {
8
    if (a>c) return (a);
8
    if (a>c) return (a);
9
  }
9
  }