??????? ???????????

????????????????????????????????????????????????????????(????????)?????????????????????????????????????

????????????????

????1.??串?????串????????????????????????б????????????????????????????????Ρ?

????2.?ж????????з????????????????????????????????????????????????ж???????????????????????Ρ?

????3.???????????????????????????????????????????????ж?????????????????????????????Ρ?

????4.?ж?——???????????????????????????????????????????????ж?????????????????????????????Σ??????????????ж?????????????Ρ?
    5.?????????????????????????????????????????????????ж????????????????????????Ρ?

????6.·???????????????????????????????????????????????п????·????

??????????????????????????漸????????????????·????????????????????????????????????????????????????????·???????

?????????????????????

????????????????????????£????????????????????????????????????????????????????????????????BUG???????????????????????????????????飬???????????????????????????????????????????????е???????????????????????????????·?????????

???????????????

????????·??????????????????????????????????????·????????????Ρ?

??????????? ????i_flag=0?????? i_count+100

??????i_flag=1?????? i_count *10

???????? ???? i_count *20

?????????????int i_count ??

????int i_flag

????????????? int i_return;

????????

????1 int Test(int i_count?? int i_flag)
????2 {
????3 int i_temp = 0;
????4 while (i_count>0)
????5 {
????6 if (0 == i_flag)
????7 {
????8 i_temp = i_count + 100;
????9 break;
????10 }
????11 else
????12 {
????13 if (1 == i_flag)
????14 {
????15 i_temp = i_temp + 10;
????16 }
????17 else
????18 {
????19 i_temp = i_temp + 20;
????20 }
????21 }
????22 i_count--;
????23 }
????24 return i_temp;
????25 }