blob: 5d7522e62aec9815cfa3eff81743bad5be2f06a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# coding=utf-8
name = 'Converting Fahrenheit to Celsius'
slug = 'Converting Fahrenheit to Celsius'
description = '''\
<p>Write a program that reads a temperature in degrees Fahrenheit from the
user, and prints the same temperature converted to degrees Celsius. The
conversion formula is C = 5/9 (F – 32).</p>'''
hint = {
'plan': '''\
<p>(translation missing)</p>''',
'no_input_call': '''\
<p>(translation missing)</p>''',
}
|