Q:

Kotlin program to convert temperature from Fahrenheit to Celsius

belongs to collection: Kotlin Basic Programs

0

Given temperature in Fahrenheit, we have to convert it into Celsius

Example:

    Input:
    Fahrenheit = 67

    Output:
    Celsius = 19.444444444444443

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to convert temperature from Fahrenheit to Celsius in Kotlin

package com.includehelp

import java.util.*

//Main Function , Entry point of Program
fun main(args: Array<String>) {

    //Input Stream
    val scanner = Scanner(System.`in`)

    //Input temperature in Fahrenheit
    print("Enter temperature into Fahrenheit : ")
    val fahrenheit = scanner.nextDouble()

    //Convert  Fahrenheit to Celsius
    val celsius =( (fahrenheit  -  32  ) *  5)/9

    //Print temperature in Celsius
    println("Temperature in Fahrenheit ($fahrenheit) = Celsius ($celsius)")
}

Output

Output will be:
Run 1:
Enter temperature into Fahrenheit : 67
Temperature in Fahrenheit (67.0) = Celsius (19.444444444444443)
---
Run 2:
Enter temperature into Fahrenheit : 78
Temperature in Fahrenheit (78.0) = Celsius (25.555555555555557)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Kotlin Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Kotlin program to find LCM of two numbers... >>
<< Kotlin program to find GCD/HCF of two numbers...