objective-c - 请大家帮我看看为什么这段代码一直是死循环(obejective-c)
黄舟
黄舟 2017-04-21 11:17:44
0
2
460

当输入不满足第一个if语句的条件时,不是理想的重新给type1和type2赋值而是死循环。

#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
    @autoreleasepool {
        //6.5.1
        long int type1, type2, flag=0;
        printf("请输入要测试的两个整数:");
        while (flag==0) {
            scanf("%li %li", &type1, &type2);
            if( (type1 ==(long int) type1) && (type2 ==(long int) type2) && type2 != 0){

                if( type1 % type2 == 0 ){
                    printf("%li可以被%li整除", type1, type2);
                    flag=1;
                }else{
                    printf("%li不可以被%li整除", type1, type2);
                    flag=1;
                }

            }else{
                printf("只能输入整数,并且第二个数不能为0,请重新输入:");
            }
        }
        return 0;
    }
}
黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回覆(2)
伊谢尔伦

你需要判斷scanf的回傳值,看是否有非法輸入。如果有非法輸入,先要清空之前輸入的內容,例如用這段程式碼:

if (scanf("%li %li", &type1, &type2) != 2) { // illegal input
    int ch; 
    while ((ch = getchar()) != '\n' && ch != EOF) {
        // intend to be blank
    }
}

當然,一般都認為scanf不太安全,因此至少都应该用fgets以及sscanf改寫:


char buffer[256];
if (fgets(buffer, sizeof(buffer), stdin) == NULL) {
    // error or no more to read
    // ...
}

if (sscanf(buffer, "%li %li", &type1, &type2) != 2) { // illegal input
    // print error message
    // continue
    // ...
}

PS. (type1 ==(long int) type1) && (type2 ==(long int) type2) 這句相當多餘。

迷茫

這是C的問題而不是Objective-c的問題。

scanf 若遇到非法輸入,會執行失敗,但非法輸入仍留在緩衝區中,等scanf再次要求輸入時,會直接讀取緩衝區而不等待終端輸入。

解決方法,Theo已給出。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板