19.12.2012 Views

Computer Programming Concepts and Visual Basic David I. Schneider

Computer Programming Concepts and Visual Basic David I. Schneider

Computer Programming Concepts and Visual Basic David I. Schneider

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

186 <strong>Computer</strong> <strong>Programming</strong> <strong>Concepts</strong> <strong>and</strong> <strong>Visual</strong> <strong>Basic</strong><br />

EXAMPLE 2<br />

Write a program to alphabetize the names Pebbles, Barney, Wilma, Fred, Dino.<br />

SOLUTION:<br />

Sorting the list requires a pair of nested loops. The inner loop performs a single pass, <strong>and</strong> the outer loop<br />

controls the number of passes.<br />

Dim nom(1 To 5) As String<br />

Private Sub cmdSort_Click()<br />

Dim passNum As Integer, i As Integer, temp As String<br />

‘Bubble sort names<br />

For passNum = 1 To 4 ‘Number of passes is 1 less than number of items<br />

For i = 1 To 5 - passNum ‘Each pass needs 1 less comparison<br />

If nom(i) > nom(i + 1) Then<br />

temp = nom(i)<br />

nom(i) = nom(i + 1)<br />

nom(i + 1) = temp<br />

End If<br />

Next i<br />

Next passNum<br />

‘Display alphabetized list<br />

picNames.Cls<br />

For i = 1 To 5<br />

picNames.Print nom(i),<br />

Next i<br />

End Sub<br />

Private Sub Form_Load()<br />

‘Fill array with names<br />

nom(1) = “Pebbles”<br />

nom(2) = “Barney”<br />

nom(3) = “Wilma”<br />

nom(4) = “Fred”<br />

nom(5) = “Dino”<br />

End Sub<br />

[Run, <strong>and</strong> click the comm<strong>and</strong> button.]<br />

EXAMPLE 3<br />

Table 6.2 contains facts about the 10 most populous metropolitan areas with listings in ascending order<br />

by city name. Sort the table in descending order by population.<br />

TABLE 6.2<br />

The 10 Most Populous Metropolitan Areas<br />

Population Median Income % Native % Advanced<br />

Metro Area in Millions per Household to State Degree<br />

Boston 4.2 $40,666 73 12<br />

Chicago 8.1 $35,918 73 8<br />

Dallas 3.9 $32,825 64 8<br />

Detroit 4.7 $34,729 76 7

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!