Read float numbers and assign them to an array : float read « Data Types « C++ Tutorial






#include <iostream>
using namespace std;
int main()
{
     float temp[5];
     cout << "Please enter the temperature for day one \n";
     cin >> temp[0];
     cout << "Please enter the temperature for day one \n";
     cin >> temp[1];
     cout << "Please enter the temperature for day one \n";
     cin >> temp[2];
     cout << "Please enter the temperature for day one \n";
     cin >> temp[3];
     cout << "Please enter the temperature for day one \n";
     cin >> temp[4];
     cout << " The temperatures for the first five days is ";
     cout << temp[0] << ", " << temp[1] << ", "<< temp[2] << ", "<< temp[3] << ", "; 
     cout << temp[4] << endl; 
     return 0;
}








2.10.float read
2.10.1.Read float number from console
2.10.2.Read float numbers and assign them to an array