liljazz2007 0 Newbie Poster

Here is the code Im trying to convert. This is my 1st time hearing about SRC Code and my teacher isnt being a big help. Please help in any way you can. Here is the code:

int a = -5;
int b = 3;
int c;
if (a == b) /*Case 1*/
c = -1;
else if (a > b) /*Case 2*/
c = a-b;
else /*a < b,Case 3*/
c = 2a + b;

This is the link to the full asignment
http://i806.photobucket.com/albums/yy346/sexyjaz12345/Program1.jpg