English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have a project to do in the Visual Basic 6.0 program, and some of the requirements are a sequence structure, a selection structure and a repetition structure. What exactly are all of these???

2007-03-12 07:45:47 · 6 answers · asked by Bucknuts 1 in Computers & Internet Programming & Design

6 answers

A selection structure is basically an If - Then - Else statement:

If condition = True Then ... Else ... End If

A sequence structure is basically a Select Case statement:

Select Case condition
Case true
Case false
Case Else
End Select

A repetition structure is a For, While or Do loop:

For I = 1 To 10 ... Next I

2007-03-12 11:31:17 · answer #1 · answered by Anonymous · 0 1

Selection Structure

2016-11-07 07:11:36 · answer #2 · answered by ? 4 · 0 0

Visual Basic Structure

2016-12-28 15:08:21 · answer #3 · answered by ? 4 · 0 0

A Selection structure is an If/Then/ElseIf/Else or a Select Case/End Select statement.

a sequence structure is a list of commands to be performed in order

a repetition structure is also called a LOOP structure. There are several different kind of LOOP structures - For/Next, Do/Loop Until, Do/Loop While, Do While/Loop, Do Until/Loop.

2007-03-12 07:54:51 · answer #4 · answered by Richard H 7 · 0 0

Uh, yeah, what Answerer #1 said... I'm a pretty decent vb6 programmer and I don't even know what you're talking about.

2007-03-12 07:53:09 · answer #5 · answered by Gravity 4 · 0 0

you had better check with the computer instructor at your school, or go onlne for help

2007-03-12 07:48:38 · answer #6 · answered by Anonymous · 0 0

fedest.com, questions and answers