以下自定义数据类型的语句中,正确的是( )。
- A.Type studentID As String * 20 name As String * 10 age As IntegerEnd student
- B.Type student ID As String * 20 name As String * 10 age As IntegerEnd Type
- C.Type studentID As String name As String age As IntegerEnd student
- D.Type ID As String * 20 name As String * 10 age As IntegerEnd Type student
热度🔥302
解析:打开微信小程序查看本题解析
若变量i的初值为8,则下列循环语句中循环体的执行次数为( )。
Do While i<=17
i=i+2
Loop
在数据表的"查找"操作中,通配符"-"的含义是( )。
若有以下程序
#include
#define N 4
void fun( int a[][N], int b[], int flag )
{ int i,j;
for( i=0; i a[j][i]) : (b[i] < a[j][i])) b[i] = a[j][i];
}
}
main()
{ int x[N][N]={1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16}, y[N],i;
fun(x, y, 1);
for (i=0;i