12 lines
125 B
C++
12 lines
125 B
C++
#include "fcpp.hh"
|
|
|
|
int absolut (int x)
|
|
{
|
|
return cond( x<=0, -x , x);
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
return print( absolut(-3) );
|
|
}
|