1.以下代码输出结果是?
#include<bits/stdc++.h>
using namespace std;
int main(){
cout << 1 + 4 * 8 % 4;
return 0;
}
A.0
B.1
C.5
D.2
1.以下代码输出结果是?
#include<bits/stdc++.h>
using namespace std;
int main(){
cout << 1 + 4 * 8 % 4;
return 0;
}
A.0
B.1
C.5
D.2