设定值的模数

时间:2015-01-21 21:29:08

标签: visual-studio-2013 modulo

我遇到问题的功能如下,Visual studio说“表达式必须是可修改的值”。有什么东西我做错了,或者它是编译器的问题?感谢您提供任何帮助/建议。

int primeCheck(int number){
    int count = 0;
    for (int i = 2; i < number; i++){
        if (number % i = 0){//the error is coming up with the number variable here
            count++;
        };
    };
    if (count > 0){
        return 0;
    }
    else{
        return 1;
    };
}

1 个答案:

答案 0 :(得分:0)

您正尝试将0分配给数字%i ..使用&#39; ==&#39;不是