欧美另类日韩中文色综合,天堂va亚洲va欧美va国产,www.av在线播放,大香视频伊人精品75,奇米777888,欧美日本道免费二区三区,中文字幕亚洲综久久2021

LENOVO筆試題

時間:2024-07-05 03:04:39 資料大全 我要投稿
  • 相關推薦

LENOVO筆試題

1.設計函數(shù) int atoi(char *s),

LENOVO筆試題

。
int atoi(char *s)
{
     char sign;
     char sign_val = 1;
     int val = 0;
     int n = 0;
     /* skip spaces */
     while (isspace(*s))
         ++s;
     if (*s == '-' || *s == '+')
         /* skip '-' and '+' sign */
     {
         sign = *s;
         if (sign == '-')
             sign_val = -1;
         ++s;
     }
     /* when goes here, it is not space or sign */
     while ((*s != '\0') && isdigit(*s))
     {
         val = 10 * n + (*s - '0');
         n = val;
         s++;
     }
     if (*s != '\0')
     {
         printf("non digit in your input!!\n");
         exit(-1);
     }
     /* non error occured */
     return (sign_val * val);
}
2.int i=(j=4,k=8,l=16,m=32); printf("%d", i); 輸出是多少?
結果為: 32.

LENOVO筆試題

【LENOVO筆試題】相關文章:

360筆試題目06-27

聯(lián)想(lenovo)筆試筆試經驗06-08

筆美國國家儀器試題目09-23

搜狐產品筆歸分享筆試題目07-05

新浪筆經04-27

新聞總署筆經10-13

IBM公司筆經09-15

營銷卷筆經10-25

consulting firm筆經05-06

科勒筆經09-23