有以下程序
#include
main()
{ int a = 3;
do
{ printf("%d,", a-=2 ); }
while( ! (--a) );
printf("\n");
}
程序运行后的输出结果是
- A.1
- B.1, -2,
- C.3,0,
- D.1,0
热度🔥700
解析:打开微信小程序查看本题解析
窗口事件是指操作窗口时所引发的事件。下列事件中,不属于窗口事件的是
有以下程序
#include
int fun( char s[])
{ int n=0;
while(*s ='0') { n=10*n+*s-'0' ; s++; }
return (n);
}
main()
{ char s[10]={ '6', '1', '*', '4', '*', '9', '*', '0', '*'};
printf("%d\n",fun(s));
}
程序的运行结果是
在某并行数据库中,有关系R(A, B)和S(B, C),其中R包含1000000行数据,S包含的100行数据。现有查询SELECT * FROM R, S WHERE R.A > S.B。下列数据划分方式中,对该查询速度最快的是()
RTOS的主要实时指标不包括( )。