Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'在窗口加载时初始化应用程序
InitializeApplication()
End Sub
Private Sub InitializeApplication()
'在此处编写初始化应用程序的代码
'添加学生管理界面
Dim studentForm As New StudentForm()
......................
阅读全部
|
张俊玲
贴于 2023年11月9日 15:01
hide
bbsi
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'在窗口加载时初始化应用程序
InitializeApplication()
End Sub
Private Sub InitializeApplication()
'在此处编写初始化应用程序的代码
'添加学生管理界面
Dim studentForm As New StudentForm()
......................
阅读全部
|
张俊玲
贴于 2023年11月9日 15:00
hide
bbsi
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Set the caption bar text of the form.
Me.Text = "tutorialspont.com"
End Sub
Private Sub txtID_MouseEnter(sender As Object, e As EventArgs)_
Handles txtID.MouseEnter
'code for handling mouse enter on ID textbox
txtID.BackColor = Color.CornflowerBlue
txtID.ForeColor = Color.White
End Sub
......................
阅读全部
|
张俊玲
贴于 2023年11月5日 21:33
hide
bbsi
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Set the caption bar text of the form.
Me.Text = "tutorialspont.com"
End Sub
Private Sub txtID_MouseEnter(sender As Object, e As EventArgs)_
Handles txtID.MouseEnter
'code for handling mouse enter on ID textbox
txtID.BackColor = Color.CornflowerBlue
txtID.ForeColor = Color.White
End Sub
......................
阅读全部
|
张俊玲
贴于 2023年11月5日 21:32
hide
bbsi
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Set the caption bar text of the form.
Me.Text = "tutorialspont.com"
End Sub
Private Sub txtID_MouseEnter(sender As Object, e As EventArgs)_
Handles txtID.MouseEnter
'code for handling mouse enter on ID textbox
txtID.BackColor = Color.CornflowerBlue
txtID.ForeColor = Color.White
End Sub
......................
阅读全部
|
张俊玲
贴于 2023年11月5日 21:32
hide
bbsi
jym=[1,0,10,9,8,7,6,5,4,3,2]#校验码
a=[7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2]#对应系数
#b=[6,2,1,1,2,3,1,9,9,8,0,6,2,5]
b=list(input("输入身份证\n"))#输入的字符以数组格式储存
for i in range(0,len(b)):#把输入的字符转换成数字
b[i]=int(b[i])
c=0
for i in range(0,14):
c=c+a[i]*b[i]
#print(c)
for i in range(0,10):
......................
阅读全部
|
曦浱
贴于 2023年10月31日 22:23
hide
bbsi
jym=[1,0,10,9,8,7,6,5,4,3,2]#校验码
a=[7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2]#对应系数
#b=[6,2,1,1,2,3,1,9,9,8,0,6,2,5]
b=list(input("输入身份证\n"))#输入的字符以数组格式储存
for i in range(0,len(b)):#把输入的字符转换成数字
b[i]=int(b[i])
c=0
for i in range(0,14):
c=c+a[i]*b[i]
#print(c)
for i in range(0,10):
......................
阅读全部
|
曦浱
贴于 2023年10月31日 22:23
hide
bbsi
jym=[1,0,10,9,8,7,6,5,4,3,2]#校验码
a=[7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2]#对应系数
#b=[6,2,1,1,2,3,1,9,9,8,0,6,2,5]
b=list(input("输入身份证\n"))#输入的字符以数组格式储存
for i in range(0,len(b)):#把输入的字符转换成数字
b[i]=int(b[i])
c=0
for i in range(0,14):
c=c+a[i]*b[i]
#print(c)
for i in range(0,10):
......................
阅读全部
|
曦浱
贴于 2023年10月31日 22:22
hide
bbsi
public static void main(String[] args) {
System.println.out("hello world")
}
阅读全部
|
wumh
贴于 2023年10月31日 11:43
hide
bbsi
public static void main(String[] args) {
System.out.println("hello world");
}
阅读全部
|
liul
贴于 2023年10月31日 11:43
hide
bbsi