有以下程序
#include
char fun( char *c )
{
if ( *c<='Z' && *c>='A' )
*c -= 'A'-'a';
return *c;
}
main()
{
char s[81], *p=s;
gets( s );
while( *p )
{
*p =fun( p );
putchar( *p );
p++;
}
printf( "\n");
}
若运行时从键盘上输入OPEN THE DOOR<回车>,程序的输出结果是
- A.OPEN THE DOOR
- B.oPEN tHE dOOR
- C.open the door
- D.Open The Door
热度🔥995
解析:打开微信小程序查看本题解析
报表的分组统计信息显示的区域是
窗体中有文本框Text1。运行程序,输入大于0的整数m,单击按钮Command1,程序显示由星号组成的高度为m的等腰三角形。例如,当m=5时,显示图形如下。
*
* * *
* * * * *
* * * * * * *
* * * * * * * * *
事件代码如下。
Private Sub Command1_Click()
m = Val(Me!Text1)
result = ""
For k = 1 To m
For n = 1 To k + m - 1
If 【 】 Then
result = result & " "
Else
result = result & " *"
End If
Next n
result = result + Chr(13)
Next k
MsgBox result, , "运行结果"
End Sub
程序【 】处应填写的语句是
在设计窗体时,要输入的数据总是取自一个表或查询中记录,可以使用的控件是
有以下程序
#include
#include
void fun( double *p1,double *p2,double *s)
{ s = (double *)calloc( 1,sizeof(double) );
*s = *p1 + *( p2+1 );
}
main()
{ double a[2] = { 1.1, 2.2 }, b[2] = { 10.0, 20.0 }, *s=a;
fun( a, b, s );
printf( "%5.2f\n", *s);
}
程序的输出结果是
下面属于软件设计建模工具的图是( )。