#include "iostream"
#include "iomanip"
#include "cmath"
#include "string"
using namespace std;

int main()

int temp[7][2]= {0};
int day = 0;

for(int i = 0; i < 7; i++) {
cout<<endl<<" Day: ";
cin >> day;

for(int i = 0; i < 7; i++) {
cout << "\nEnter low temperature: ";
cin >> temp[day][0];

for(int i = 0; i < 7; i++) {
cout << "\nEnter high temperature: ";
cin >> temp[day][1];

for(int i = 0; i < 7; i++) {
cout << "\nDay: " << day << " High: " << temp[day][1] << " Low: " << temp[day][0] <<endl;

Inline Code Example Here
return 0;

Is there a question?

commented: I wonder why there's a green text Inline Code Example Here. It's as if someone didn't review their posting. +16
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.