Untitled

mail@pastecode.io avatar
unknown
c_cpp
a month ago
212 B
0
Indexable
Never
#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;
}
Leave a Comment