The Daily Gazette accepts classified ads in several categories. For most ads, the newspaper charges 10 cents per word for the first 50 words, and 8 cents per word for every word after that. Design Visual Logic Flowchart for a program that accepts data about an ad: customer name, ad category (for example, Apartment for rent), and number of words. Display all the input data and the price for the ad.

input customer name

input category
input n
if n<=50
price = 0.10*n
else
price = (n-50)*0.8+5.00
end if
output customer name
output category
output n
output price

To design a Visual Logic flowchart for a program that accepts data about a classified ad and calculates the price, we can follow these steps:

1. Start: Begin the flowchart.
2. Prompt for customer name: Display a message asking the user to enter the customer's name.
3. Input customer name: Allow the user to input the customer's name.
4. Prompt for ad category: Display a message asking the user to enter the ad category.
5. Input ad category: Allow the user to input the ad category.
6. Prompt for the number of words: Display a message asking the user to enter the number of words in the ad.
7. Input number of words: Allow the user to input the number of words.
8. Calculate the price: Calculate the price for the ad using the given pricing rules.
- If the number of words is less than or equal to 50, calculate the price as 10 cents per word multiplied by the number of words.
- If the number of words is greater than 50, calculate the price as the cost of the first 50 words plus the cost of the extra words. (Cost of first 50 words: 10 cents per word multiplied by 50. Cost of extra words: 8 cents per word multiplied by the number of extra words.)
9. Display input data and price: Display the customer name, ad category, number of words, and calculated price.
10. End: End the flowchart.

Here is a visual representation of the flowchart:
```
+------------------+
| Start |
+------------------+
|
V
+------------------+
| Prompt for |
| customer name |
+------------------+
|
V
+------------------+
| Input customer |
| name |
+------------------+
|
V
+------------------+
| Prompt for ad |
| category |
+------------------+
|
V
+------------------+
| Input ad |
| category |
+------------------+
|
V
+------------------+
| Prompt for |
| number of words |
+------------------+
|
V
+------------------+
| Input number of |
| words |
+------------------+
|
V
+------------------+
| Calculate price |
+------------------+
|
V
+------------------+
| Display input |
| data and price |
+------------------+
|
V
+------------------+
| End |
+------------------+
```

By following this flowchart, you can create a program in Visual Logic that accepts data about an ad, calculates the price, and displays the input data along with the price.