![]() |
#2
yangfrancis2017-05-11 22:26
|
这是我在手机上用Learn C++ 做题时遇到的
what is the output of this code?
void f(int a){
for(int i=1; i<=a/2; i++){
if(a%i==0){
cout<<i;
}
}
}
int main(){
f(6);
}