Choose the output of the following C++ statement: cout << "Sunny " << '\n' << "Day " << endl; Sunny \n Day Sunny \nDay endl Sunny \nDay Sunny Day In a C++ program, one and two are double variables and input values are 10.5 and 30.6. After the statement cin >> one >> two executes ___.
one = 30.6, two = 30.6
one = 11, two = 31
one = 10.5, two = 30.6
one = 10.5, two = 10.5