float number array : float « Data Types « C++ Tutorial






#include <iostream>

float data[5]; // data to average and total 
float total;   // the total of the data items 
float average; // average of the items

int main()
{
    data[0] = 34.0;
    data[1] = 27.0;
    data[2] = 46.5;
    data[3] = 82.0;
    data[4] = 22.0;

    total = data[0] + data[1] + data[2] + data[3] + data[4];
    average =  total / 5.0;
    std::cout << "Total " << total << " Average " << average << '\n';
    return (0);
}
Total 211.5 Average 42.3








2.9.float
2.9.1.float point constant number
2.9.2.float number array
2.9.3.Read float point numbers from keyboard and save them to a float array
2.9.4.Type Conversion: from float to double
2.9.5.constant floats, floating point variables
2.9.6.Local Float Variables and Parameters: convert the temperature in Fahrenheit to Celsius
2.9.7.Display decimal and float with format
2.9.8.Define function whose parameter and return value are both float
2.9.9.Tests whether two floating-point numbers are approximately equal.
2.9.10.Controlling the printing of trailing zeros and decimal points for floating-point values.
2.9.11.cin handles double and float type values