一道C语言作业 谁帮我做下啊.write a program that will read five values of type double from the keyboard and store them in an array.Calculate the reciprocal of each value (the reciprocal of a value x is 1.0/x)and store it in a separate arra

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/11 18:28:58
一道C语言作业 谁帮我做下啊.write a program that will read five values of type double from the keyboard and store them in an array.Calculate the reciprocal of each value (the reciprocal of a value x is 1.0/x)and store it in a separate arra

一道C语言作业 谁帮我做下啊.write a program that will read five values of type double from the keyboard and store them in an array.Calculate the reciprocal of each value (the reciprocal of a value x is 1.0/x)and store it in a separate arra
一道C语言作业 谁帮我做下啊.
write a program that will read five values of type double from the keyboard and store them in an array.Calculate the reciprocal of each value (the reciprocal of a value x is 1.0/x)and store it in a separate array.Output the values of the recipraocals ,and calculate and output the sum of the reciprocals.

一道C语言作业 谁帮我做下啊.write a program that will read five values of type double from the keyboard and store them in an array.Calculate the reciprocal of each value (the reciprocal of a value x is 1.0/x)and store it in a separate arra
#include
void main()
{
double num[5], result[5];
double sum=0.0;
int i;

for (i=0; i