Computer Science, asked by bezarijit, 4 months ago

write a basic 256 program to convert celsius temperature to Fahrenheit temperature​

Answers

Answered by alihusain40
0

Answer:

c=32+1/4

hope it's your right answer

Answered by allysia
0

Language:

BASIC-256

Program:

input "Enter celsius value: ",c

f=( c*(9/5)) +32

print f

Output:

Enter celsius value: 12

53.6

Explanation:

  • Line 1: takes input in c for Celsius.
  • Line2: convert to Fahrenheit using formula.
  • Line 3: Print the Fahrenheit value.

Attachments:
Similar questions