Dark mode logo
Last Updated:
Converts temperature in Celcius to Fahrenheit in Raptor

Converts temperature in Celcius to Fahrenheit in Raptor

Algorithm

Input: Input temperature in celcius
output: Converts Celcius to Fahrenheit

  1. Start
  2. Input temperature
  3. temp = [{(9/5)*c} +32]
  4. Print temperature in Fahrenheit is temp
  5. Stop

FlowChart

Flowchart to convert celcius to farenheit

Note: This Flowchart was created using a program called Raptor. The flowchart file can be downloaded by clicking here

Input
c:36

Output
temp:96.800

Comments