Files
CITISE1/IUT/Info1/TD/Exercices/Deg2Far/Deg2Far.cpp
2026-04-08 20:11:20 +02:00

5 lines
77 B
C++

#include "Deg2Far.h"
float deg2Far(float deg) {
return 1.8 * deg + 32;
}