题目网 >继续教育 >学历类 >试题详情
问题详情

楼兰抛光砖代表双长边倒45度角编号最后大写字母是()。

A、M2

B、D2

C、V2

D、S2

相关热点: 大写字母   抛光砖  

未搜索到的试题可在搜索页快速提交,您可在会员中心"提交的题"快速查看答案。 收藏该题
查看答案

相关问题推荐

请完成下列Java程序:对大写的26个英文字母加密,从键盘输入一个大写字母串,输出这个串加密后的结果。加密操作是将字母变换成倒序的大写字母,如A->Z,B->Y。

注意:请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。

程序运行结果如下:

输入一个大写字母串:ADFSDFFE

加密后的大写字母串:ZWUHWUUV

import java.io.*;

public class ex12_2{

public static void main (String[] args){

char ch = 'A';

String str;

System. out .print ( "输入一个大写字母串: ");

try{

BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

str= in.readLine();

System. out .print ( "加密后的大写字母串:");

for(int i=0;i<str.length();i++){

_______________;

_______________;

System.out.print(ch);

}

}catch(IOException e){}

try{

System.in.read();

}catch(IOException e) {};

}

}

在窗体上画一个名称为Text1的文本框,要求文本框只能接收大写字母的输入。以下能实现该操作的事件过程是()。

A.Private Sub Text1_KeyPress(KeyAscii As Integer)

If KeyAscii<65 Or KeyAscii>90 Then

MsgBox "请输入大写字母"

KeyAscii=0

End If

End Sub

B.Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)

If KeyCode <65 Or KeyCode>90 Then

MsgBox "请输入大写字母"

KeyCode=0

End If

End Sub

C.Private Sub Text1_MouseDown(Button As Integer,_

Shift As Integer, X As Single, Y As Single)

If Asc(Text1.Text) <65 Or Asc(Text1.Text) >90 Then

MsgBox "请输入大写字母"

End If

End Sub

D.Private Sub Text1_Change()

If Asc(Text1.Text) >64 And Asc(Text1.Text) <91 Then

MsgBox "请输入大写字母"

End If

End Sub

[单选]药品批准文号的正确格式为()
A.国药准字+大写字母+8位数字
B.国食健字+大写字母+8位数字
C.国药批准+大写字母+8位数字
D.国药准字+大写字母+4位数字
在ASCII码中,按照在ASCII值从大到小排列顺序是()。A:数字、英文大写字母、英文小写字母
B:数字、英文小写字母、英文大写字母
C:英文大写字母、英文小写字母、数字
D:英文小写字母、英文大写字母、数字

已知英文大写字母D的ASCII码值是44H,那么英文大写字母F的ASCII码值为十进制数

A.46

B.68

C.70

D.15

联系我们 用户中心
返回顶部