Untitled

 avatar
unknown
c_cpp
2 years ago
212 B
10
Indexable
#include <iostream>

using namespace std;

int main()
{
    double numbers[] = { 7.5, 3.2, 15.0, 17.2, -3.3 };

    for (double n : numbers)
    {
        cout << n << ", ";
    }

    return 0;
}
Editor is loading...
Leave a Comment