【简答题】运行下列程序的输出结果是 ____ 。 #include using namespace std; int main(void) { int i=5; do { i++; cout<
【简答题】运行下列程序的输出结果是____。 #include using namespace std; int main(void) { int a=1,b=0; if(a!=1)cout<<1< else if(b=1)cout<<2< else cout<<3< return 0; }
【简答题】运行下列程序,屏幕输出为_______。 #include using namespace std; int main() { int a=5, b=2, c=5, d=10; if(a>b) if(c>d) cout< else cout< else cout< return 0; }
【简答题】运行下列程序,屏幕输出为_______。 #include using namespace std; int main() { int a=7, b=9, c=5, d=10; if(a>b) if(c>d) cout< else cout< else cout< return 0; }
【简答题】运行下列程序,屏幕输出为_______。 #include using namespace std; int main() { int a=3, b=8, c=5, d=10; if(a>b) if(c>d) cout< else cout< else cout< return 0; }