大学职业搜题刷题APP
下载APP
首页
课程
题库模板
Word题库模板
Excel题库模板
PDF题库模板
医考护考模板
答案在末尾模板
答案分章节末尾模板
题库创建教程
创建题库
登录
logo - 刷刷题
创建自己的小题库
搜索
【简答题】

程序填空【一】 功能:要求在Text1中输入一段字符,选中“大写转为小写小写转为大写”,单击转换按钮后,Text2显示大小写相反的字符串;选中“全部小写”,单击转换按钮后,Text2显示全部小写的字符串;选中“全部大写”,单击转换按钮后,Text2显示全部大写的字符串。 Private Sub Command1_Click() Dim n As Integer, k As Integer, ch As String, a As String '**********SPACE********** n = Len(【?】) ch = "" For k = 1 To n '**********SPACE********** a = Mid(Text1.Text,【?】,1 ) If Option1.Value = True Then If a >= "a" And a <= "z" Then ch = ch + UCase(a) ElseIf a >= "A" And a <= "Z" Then ch = ch + LCase(a) Else ch = ch + a End If End If If Option2.Value = True Then ch = UCase(Text1) End If If Option3.Value = True Then ch = LCase(Text1) '**********SPACE********** 【?】 Text2 = ch Next k End Sub

手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
收藏 - 刷刷题收藏
举报
参考答案:
举一反三
相关题目:
刷刷题-刷题-导入试题 - 刷刷题
参考解析:
AI解析
重新生成
题目纠错 0
发布
刷刷题-刷题-导入试题 - 刷刷题刷刷题-刷题-导入试题 - 刷刷题刷刷题-刷题-导入试题 - 刷刷题
刷刷题-刷题-导入试题 - 刷刷题
刷刷题-刷题-导入试题 - 刷刷题
刷刷题-单词鸭