123456
12
56
1234567890
执行下列程序后,鼠标单击窗体,输出结果为 。Private Sub Form_Click()Print "Click";End SubPrivate Sub Form_MouseDown(Button As Integer, Shift _As Integer, X As Single, Y As Single)Print "Donw"End SubPrivate Sub Form_MouseUp(Button As Integer, Shift _As Integer, X As Single, Y As Single)Print " Up"End Sub( )。A.DownUpClickB.ClickDownUpC.DownClickUpD.UpDownClick
点击查看答案
执行下列语句段后程序的输出结果是______。int x[]={1,2,3,4,5};int q=x;cout<<*(++q)<<end1;
下列程序段执行后的输出结果为()。A.0B.1C.2D.3
执行“cout.<<char(‘F’,-2)<<end 1;”语句后得到的输出结果为【 】。
下列程序段的输出结果是【 】。cout << fixed<<509.123456789<<end1;
下列程序执行后,输出的结果是( )。 int x=-5,y=0; while(++x) y++; cout<<y<<end1;A.1B.2C.4D.5
执行以下程序后的输出结果为 ( )。includeUsing namespace std;void fun(int x, int y执行以下程序后的输出结果为 ( )。#include<iostream>Using namespace std;void fun(int x, int y, int *cp, int *dp) {*cp=x+ y; 2*dp=x- y;}void maia() {int a, b, c, d; a=30; b=50; fun(a, b, &c, &d); cout<<c<<','<,d<<end1;}A.50, 30B.30, 50C.80, 20D.80, 20