Switch.md 821 字节
Newer Older
F
feilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
# 多条件分支

以下C#代码的输出是多少?

```csharp
int Calc(char op, int a, int b){
    if(op=='+'){
        return a+b;
    }else if(op=='-'){
        return a-b;
    }else if(op=='*'){
        return a*b;
    }else if(op=='/'){
        try{
            return a/b;
        }catch(DivideByZeroException e){
            throw new Exception("被除数不能为0");
        }
    }else{
        throw new Exception("无效的操作符");
    }
}

int ret = Calc('*', Calc('+',1, Calc('-',3,Calc('/',1,2))), Calc('-',3,Calc('/',1,2)));
Console.WriteLine("ret={0}", ret);
```

## 答案

```csharp
ret=12
```

## 选项

### A

```csharp
ret=10
```

### B

```csharp
Unhandled exception. System.Exception: 无效的操作符
```

### C

```csharp
Unhandled exception. System.Exception: 被除数不能为0
```