Victory Day

Today is 16th December, 2017. 46 years ago on this day we earned freedom. Every freedom comes up wit…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

whats wrong here?

#include
using namespace std;
int main()
{
int i, t, n;
cin >> t;
for(i=1; i<=t; i++)
{
cin >> n;
switch(n)
{
case 1: cout << “Bir Sreshtho Captain Mohiuddin Jahangir: Amra Tomay Vulbo Na.” << endl;
break;
case 2: cout << “Bir Sreshtho Sepahi Hamidur Rahman: Amra Tomay Vulbo Na.” << endl;
break;
case 3: cout << “Bir Sreshtho Sepahi Muhammad Mustafa: Amra Tomay Vulbo Na.” << endl;
break;
case 4: cout << “Bir Sreshtho Engine Room Artificer Mohammad Ruhul Amin: Amra Tomay Vulbo Na.” << endl;
break;
case 5: cout << “Bir Sreshtho Flight Lieutenant Matiur Rahman: Amra Tomay Vulbo Na.” << endl;
break;
case 6: cout << “Bir Sreshtho Lance Naik Munshi Adbur Rouf: Amra Tomay Vulbo Na.” << endl;
break;
case 7: cout << “Bir Sreshtho Lance Naik Noor Mohammad Sheikh: Amra Tomay Vulbo Na.” << endl;
break;

    }
}

}