1. 程式人生 > >讀入掛

讀入掛

color open eve span () else event urn code

技術分享圖片
int Scan()

{

    int res = 0, ch, flag = 0;

    if((ch = getchar()) == -)             //判斷正負

        flag = 1;

    else if(ch >= 0 && ch <= 9)           //得到完整的數

        res = ch - 0;

    while((ch = getchar()) >= 0 && ch <= 9 )

        res 
= res * 10 + ch - 0; return flag ? -res : res; } //數字
數字

讀入掛