#include <iostream> // for cout, endl #include <string> using namespace std; int main( ){ string profName = "Dr. C"; string studAName = "StudentA"; int profLevel = 99; int studALevel = 123; float profPoints = 42.0123456789; float studAPoints = 567.890123456; cout << "123456789012345678901234567890" << endl; return 0; }add code to display the values to exactly match the output below:
123456789012345678901234567890 Name Level Points Dr. C 99 42.01 StudentA 123 567.89