在 C++ 中有以下 4 条语句: static int hot=200; int &rad=hot; hot=hot+100; cout<
举一反三
- 在 C++中执行以下 4 条语句后输出 rad 值为( )static int hot=200;int &rad=hot;hot=hot+100;cout<<rad<<endl; A: 0 B: 100 C: 300 D: 500
- 在C++中执行以下4条语句后输出rad值为: static int hot=200 ; int &rad=hot ; hot=hot+100 ; cout<<rad<<endl ;
- 在C++中有以下4条语句:static int hot=200;int &rad=hot;hot=hot+100;cout<<rad<<endl;执行这4条语句后输出为: A: 0 B: 100 C: 200 D: 300
- 在C++中执行以下4条语句后输出rad值为:( ) static int hot=20; int &rad=hot; hot=hot+100; cout< A: 0 B: 120 C: 20 D: 100
- 21.在 C++中执行以下 4 条语句后输出 rad 值为: .