write a basic 256 program to convert celsius temperature to Fahrenheit temperature
Answers
Answered by
0
Answer:
c=32+1/4
hope it's your right answer
Answered by
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
English,
2 months ago
India Languages,
2 months ago
English,
2 months ago
Social Sciences,
5 months ago
Math,
10 months ago