不是VIP会员,不能显示答案

题目解答

题目:
#include <iostream>
using namespace std;

int main() {
int i = 100, x = 0, y = 0;
while (i > 0) {
i--;
x = i % 8;
if (x == 1)
y++;
}
cout << y << endl;
return 0;
}
输出:13
考点:
分析:
解答:
评论:
老师: