Question: I need to write this c++ code in MIPS //if x has a value of 4, print ddd //if x has a value of 3,
I need to write this c++ code in MIPS
//if x has a value of 4, print "ddd"
//if x has a value of 3, print "ccc"
// any other value (not 3 or 4), print "eee"
result = "";
if (x==4) result = result + "ddd";
else if (x==3) result = result + "ccc";
else result = result + "eee";
cout << "4.\t" << result << endl;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
