Rewrite the following fragment using switch
:
1 (C= ='E') eastern '++ ;
if (ch= = 'W') western++;
it i ch== 'N') northern ++;
if (ch = = '5') southern ++;
Answers
Answered by
11
Answer:
switch (ch)
{
case:'E": eastern ++;
break;
case :'W":western ++;
break;
case:'N':northern ++;
break;
case :'S":southern ++;
break;
Answered by
1
Answer:
which subject you want I will give you
Similar questions
Social Sciences,
3 months ago
Math,
3 months ago
Math,
7 months ago
English,
7 months ago
English,
11 months ago