单选题

阅读程序写结果。

#include<iostream>

using namespace std;

int main() {

    int x,y;

    cin >>x>>y;

    if(x>y&&y!=0) {

        cout << x/y <<endl;

    } else if (x!=0) {

        cout << y/x <<endl;

    }

    return 0;

}

输入:96 10

输出:_______

A

10

B

9

C

8

D

7

赣ICP备20007335号-2