2.有C++程序如下: #include using namespace std; void main() { int a(5),b(6),i(0),j(0); switch(a) { case 5:swit

admin2013-01-18  33

问题   2.有C++程序如下:
  #include
  using namespace std;
  void main()
  {
    int a(5),b(6),i(0),j(0);
    switch(a)
    {
    case 5:switch(b)
    {
    case 5:i++;break;
    case6:j++;break;
   }
  case6:i++;j++;break;
  default:i++;j++;
  1
  cout<<i<<“,”<<j<<endl;
}
请写出输出结果。

选项

答案输出结果为1,2。

解析
转载请注明原文地址:https://jikaoti.com/ti/fE7QFFFM
0

随机试题
最新回复(0)