Android Celsius to Kelvin Convert CelciusToFahrenheit(int temp)

Here you can find the source of CelciusToFahrenheit(int temp)

Description

Celcius To Fahrenheit

Declaration

public static int CelciusToFahrenheit(int temp) 

Method Source Code

//package com.java2s;

public class Main {
    public static int CelciusToFahrenheit(int temp) {

        double fahr = temp * 9 / 5 + 32;
        return (int) fahr;
    }/*from w  ww  .jav  a 2s  .com*/
}

Related

  1. convertFromCelsiusToKelvin(float value)