I need help in understanding this C++ Program. I would like to know the codes used, how it works, a brief description, and its purpose. Thank you in advance, this will really help me in my upcoming final PROBLEM QUESTION: Write a program that prompts the user to enter 10 names, each with maximum of 30 characters. Output the names that start with letter A and its corresponding length. C++ CODE: //start //including header file #include using namespace std; //std namesapce int main() //main program { cout<<"\nEnter 10 names:"<>name[i]; cout<<"\nName\t\t length"<
I need help in understanding this C++
Thank you in advance, this will really help me in my upcoming final
PROBLEM QUESTION:
Write a program that prompts the user to enter 10 names, each with maximum of 30 characters. Output the names that start with letter A and its corresponding length.
C++ CODE:
//start
//including header file
#include<iostream>
using namespace std; //std namesapce
int main() //main program
{
cout<<"\nEnter 10 names:"<<endl; //take 10 names from user
string name[10];
for(int i=0;i<10;i++) //reading names
cin>>name[i];
cout<<"\nName\t\t length"<<endl; //printing name and length
for(int i=0;i<10;i++)
{ //if first letter is A
if(name[i].at(0)=='A')
{ //print name and length
cout<<name[i]<<"\t\t "<<name[i].length()<<endl;
}
}
return 0; //return
} //end program
Step by step
Solved in 2 steps