Do the following exercises.
4.0
4
'Four'
sCoRe
remaining_classes
UNIT
1stName
Which of these are legal assignment statements?
33 = a
f(x) = x*3 + 7
a = 33
a == 33
astr = hello, world!
a = a + 1
a = -a
Write a program that prompts for and receives from the user a diameter in inches and prints the circumference and area in square centimeters. First, design an algorithm, then write the code.
Write a program that prompts for and receives from the user a number of days and print the equivalent number of weeks and days. First, design an algorithm, then write the code.