diff --git a/3月调考/1/Prog1.c b/3月调考/1/Prog1.c index d176ba4..559d644 100644 --- a/3月调考/1/Prog1.c +++ b/3月调考/1/Prog1.c @@ -21,9 +21,22 @@ void fn(char* str){ p = str; q = str; /**********Program**********/ - - - + while(*p != '\0'){//pÓÃÀ´±éÀúËùÓÐÔªËØ + if(*p >= '0' && *p <= '9'){//µ±Ç°Î»ÖÃÖ¸ÕëµÄÔªËØΪÊý×Ö + ch = *p;//±¸·Ýµ±Ç°µÄÊý×Ö + q = p;//q´æ´¢µ±Ç°Õâ¸öÊýλÖõĵØÖ· + while(q != str){//½«pµØÖ·Ç°ËùÓеÄ×ÖĸÕûÌåºóÒÆһλ + //µ½ÏÂÒ»¸öÔªËصØַΪÊý×éÊ×µØÖ·»òÏÂÒ»¸öÔªËØΪÊý×Öʱֹͣ + if(*(q-1) >='0' && *(q-1) <= '9'){ + break; + } + *q = *(q-1); + q--; + } + *q = ch; + } + p++; + } /********** End **********/ } int main() diff --git a/3月调考/2/Prog1.c b/3月调考/2/Prog1.c index f5b84e6..f9b602d 100644 --- a/3月调考/2/Prog1.c +++ b/3月调考/2/Prog1.c @@ -39,11 +39,16 @@ int calculateDeliveryTimes(int weights[], int size) { int deliveryTimes = 1; /**********Program**********/ - - - - - + int i; + for(i=0;i 50){ + currentWeight=0; + deliveryTimes++; + } + currentWeight += weights[i]; + } + } /********** End **********/ return deliveryTimes; } @@ -67,4 +72,4 @@ int main() { printf("ÐèÒª%d´Î²ÅÄܽ«ËùÓаü¹üÅäËÍÍê±Ï¡£\n", times); return 0; -} \ No newline at end of file +}