Xcode帮助(C):控制台消失并且没有输出

时间:2015-01-06 01:40:19

标签: c console xcode6

我对C编程语言和编程很新。我试图创建一个简单的程序,从99开始,减少3到0。这个程序也必须能够输出"找到一个!"当整数可被5整除时,谢谢,任何帮助都表示赞赏!

    #include <stdio.h>

int main(int argc, const char * argv[]) {
    int i;
    for (i = 100; i < -1; i -= 3) {
        printf("%d\n", i);
        if (i % 5 == 0) {
            printf("Found one!\n");
        }
    }
    return 0;
}

1 个答案:

答案 0 :(得分:1)

这应该适合你:

#include <stdio.h>  //For printf function
#include <stdlib.h> //For system function

int main(int argc, char * argv[]) {

    int i;

    for (i = 99; i >= 0; i -= 3) {
           //^^    ^^ Changed Condition
           //|i assigned to 99
        printf("%d\n", i);
        if (i % 5 == 0 && i != 0) {
                     //^^^^^^^^^Also check that it's not true with 0
            printf("Found one!\n");
        }
    }

    system("pause");
    return 0;
}