def average_value_in_file(filename):
f = open(filename)
total = 0
count = 0
for x in f.read().splitlines():
total += int(x)
count += 1
return total/count
print(average_value_in_file("input.txt"))
I used an input file that looks like this:
1
1
1
1
Answer:
Yeah if you look it up it says you can get it for free
Answer:
#include <stdio.h>
void first() {
printf("first\n");
}
void second() {
printf("second\n");
}
void third() {
printf("third\n");
}
int main() {
first();
second();
third();
printf("End of program.\n");
return 0;
}
Answer:
#include <stdio.h>
int main()
{
//Store temp in Fahrenheit
int temp_fahrenheit;
//store temp in Celsius
float temp_celsius;
printf("\nTemperature conversion from Fahrenheit to Celsius is given below: \n\n");
printf("\n%10s\t%12s\n\n", "Fahrenheit", "Celsius");
//For loop to convert
temp_fahrenheit=0;
while(temp_fahrenheit <= 212)
{
temp_celsius = 5.0 / 9.0 *(temp_fahrenheit - 32);
printf("%10d\t%12.3f\n", temp_fahrenheit, temp_celsius);
temp_fahrenheit++;
}
return 0;
}
Explanation:
The program above used a while loop for its implementation.
It is a temperature conversion program that converts integer Fahrenheit temperatures from 0 to 212 degrees to floating-point Celsius temperatures with 3 digits of precision.
This can be calculated or the calculation was Perform using the formula celsius = 5.0 / 9.0 * ( fahrenheit - 32 ).
The expected output was later printed in two right-justified columns of 10 characters each, and the Celsius temperatures was preceded by a sign for both positive and negative values.