Your goal is to solve the following programming lab activity. Write a program that prompts & accepts a number between 1 and 12. After getting the input, display the number with the appropriate month. (example: This is the 1st month…January, This is the 2nd month…February, This is the 12th month…December).


Be sure to THINK about the logic and design first (IPO chart and or pseudocode), then code the Visual Logic command line processing.

Deliverables

Decision Calendar IPO Model
Decision Calendar Pseudocode
Decision Calendar Flowchart
Decision Calendar Output Sample

it has to be in visual logic.. can u help me just with the input??

It helps to be more specific in what you put in the Subject line.

Try to work on your salary problem

http://www.jiskha.com/display.cgi?id=1306043443

Please show some of your work or progress.

@MathMate you're no help. Why are you even here?

Sure! Here's how you can approach this lab activity:

1. First, let's start by creating an IPO chart for the program:

Input:
- The number of the month (between 1 and 12)

Processing:
- Determine the appropriate month based on the input number
- Display the number with the corresponding month

Output:
- Display the number and the corresponding month

2. Next, let's create pseudocode to outline the steps of the program:

Prompt the user to enter a number between 1 and 12

Accept the input and store it in a variable called "monthNumber"

If "monthNumber" is equal to 1, then
Display "This is the 1st month... January"
Else if "monthNumber" is equal to 2, then
Display "This is the 2nd month... February"
...
Else if "monthNumber" is equal to 12, then
Display "This is the 12th month... December"
Else
Display "Invalid input. Please enter a number between 1 and 12."

End of program

3. Now, let's create a flowchart to visualize the steps of the program. I will assume you are familiar with flowchart symbols and conventions. Here's a basic flowchart for the program:

```
start -> Prompt user for a number -> Accept input and store in "monthNumber" ->

if "monthNumber" = 1 -> Display "This is the 1st month... January" ->
end

if "monthNumber" = 2 -> Display "This is the 2nd month... February" ->
end

...

if "monthNumber" = 12 -> Display "This is the 12th month... December" ->
end

else -> Display "Invalid input. Please enter a number between 1 and 12." -> end
```

4. Finally, here's a sample output of the program:

```
Enter a number between 1 and 12: 6
This is the 6th month... June
```

I hope this helps you in solving the lab activity! Let me know if you have any further questions.