123456789101112131415161718192021222324252627282930313233343536373839 |
- public class ConversionTool {
-
-
- public static void main(String[] args){}
-
- public static float CentimetersToInches(float centimeters){
- return centimeters * (float)0.393701;
- }
-
- public static float InchesToCentimeters(float inches){
- return inches * (float)2.54;
-
- }
-
- public static float FeetToMeters(float feet){
- return feet * (float)0.3048;
- }
-
- public static float MetersToFeet(float meters){
- return meters * (float)3.28084;
- }
-
- public static float CelsiusToFahrenheit(float celsius){
- return celsius + (float)32;
- }
-
- public static float FahrenheitToCelsius(float fahrenheit){
- return fahrenheit - (float)32;
- }
-
- public static float MphToKph(float mph){
- return mph * (float)1.60934;
- }
-
- public static float KphToMph(float kph){
- return kph * (float)0.621371;
- }
- }
|