#include <iOStream>
#include <iomanip>
using std::cout;
using std::endl;
using std::setw;
int main()
{
static const char *Rush[3][2] = {
{ "Geddy Lee", "Vocals, bass and keyboards" },
{ "Alex Lifeson", "Lead/rhythm guitar" },
{ "Neil Peart", "Drums & percussion" }};
cout << "Personnel:" << endl << endl;
for (int nPerson=0; nPerson<3; ++nPerson)
cout << setw(16) << Rush[nPerson][0] << " : " << Rush[nPerson][1] << endl;
cout << endl;
return( 0 );
}
Copyright © 2026 eLLeNow.com All Rights Reserved.