Develop
2003.04.23 00:05
[vb] 비쥬얼 베이직 기출 문제 연습2
조회 수 61371 댓글 0
DefSng A-Z
Dim a(10), b(10), c(10), d(10) As String, e(10), f(10), g(10), h(10), l(10), pc, a1(10), b1(10), c1(10), tmp As Variant
Private Sub Command1_Click()
pc = pc + 1
a(pc) = Text1.Text
b(pc) = Text2.Text
c(pc) = Text3.Text
a1(pc) = Text1.Text
b1(pc) = Text2.Text
c1(pc) = Text3.Text
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text1.SetFocus
End Sub
Private Sub Command2_Click()
For i = 1 To pc - 1
For j = i + 1 To pc
If a(i) > a(j) Then
tmp = a(i): a(i) = a(j): a(j) = tmp
tmp = b(i): b(i) = b(j): b(j) = tmp
tmp = c(i): c(i) = c(j): c(j) = tmp
End If
Next j
Next i
For i = 1 To pc
e(i) = c(i) * 20000
If b(i) = 21 Then
d(i) = "사원"
x = 1000000
Select Case e(i)
Case Is >= 1000000: f(i) = 50000
Case Is >= 500000: f(i) = 30000
Case Is < 500000: f(i) = 0
End Select
Else
d(i) = "대리"
x = 1500000
Select Case e(i)
Case Is >= 1000000: f(i) = 100000
Case Is >= 500000: f(i) = 50000
Case Is < 500000: f(i) = 0
End Select
End If
g(i) = x + f(i)
Next
For i = 1 To pc
s = 1
For j = 1 To pc
If g(i) < g(j) Then
s = s + 1
End If
Next
h(i) = s
Next
Form1.Hide
Form2.Show
Form2.Print "비번호: 123"
Form2.Print "사원번호", "직위", "매출금", "보너스", "총합계", "순위"
For i = 1 To pc
Form2.Print a(i), d(i), e(i), f(i), g(i), h(i)
Next
Form2.Print ""
Form2.Print "입력자료"
For i = 1 To pc
Form2.Print a1(i), b1(i), c1(i)
Next
End Sub
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
25 | Etc |
IoT가 만드는 미래와 플랫폼 경쟁력
![]() |
hooni | 2014.09.23 | 0 |
24 | Etc | iOS 에서 쓸만한 오프라인 구글지도 찾기 | hooni | 2014.01.06 | 17284 |
23 | System/OS |
HTTPS와 SSL 인증서
![]() |
hooni | 2014.03.11 | 8738 |
22 | System/OS | HTTP 프로토콜 (브라우저와 웹서버 간의 통신) | hooni | 2003.04.23 | 50774 |
21 | Develop | How to Test SMTP AUTH using Telnet | hooni | 2018.04.05 | 6184 |
20 | System/OS | How to Setup an Email Server on CentOS 7 | hooni | 2018.04.05 | 5911 |
19 | System/OS |
How to Install and Use wget on Mac
![]() |
hooni | 2020.09.03 | 5570 |
18 | Etc | How to completely Uninstall Coda | hooni | 2017.10.24 | 4866 |
17 | Etc | GSM에서 음성이 실리는 과정 요약.. | hooni | 2013.04.23 | 18627 |
16 | Develop |
GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스
![]() |
hooni | 2014.10.14 | 2062 |
15 | Develop | git 브런치 배우기 (링크) | hooni | 2013.07.09 | 22079 |
14 | Develop |
GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기)
4 ![]() |
hooni | 2013.07.06 | 27129 |