index
:
ING1-Workshops.git
main
Ateliers ING1 2024-2025
Marcellus
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
graphs
/
piscine
/
my_round
/
my_round.c
blob: 324bc1dfd8f70e24a165ae01e126f480030345ca (
plain
)
1
2
3
4
5
6
int my_round(float n) { if (n < 0) return n - 0.5; return n + 0.5; }