blob: a2af21207b2a94dba947dd012394200b806d5939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# coding=utf-8
id = 180
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>''',
}
|