Write a pseudocode for a program that computers the cost per day for a vacation.The user enters a value for total dollars available to spend and can continue to enter new dollar amounts while the amount of money available to spend per day is below R100,a message display

Sure! Here's a pseudocode for the program:

```
1. Initialize totalDollars to 0
2. Initialize daysCounter to 0

3. Read totalDollars from user

4. Repeat the following steps until totalDollars divided by daysCounter is greater than or equal to 100:
4.1. Read newAmount from user
4.2. Add newAmount to totalDollars
4.3. Increment daysCounter by 1

5. Display "The amount of money available to spend per day is now above R100."

6. Calculate costPerDay by dividing totalDollars by daysCounter

7. Display costPerDay
```

In this pseudocode, we first initialize `totalDollars` to 0 and `daysCounter` to 0. The user is then prompted to enter the total dollars available to spend.

Next, we repeat a loop until the amount of money available to spend per day is above or equal to R100. Inside the loop, we read a new amount entered by the user, add it to `totalDollars`, and increment `daysCounter` by 1.

Once the loop finishes, we display a message indicating that the amount of money available to spend per day is now above R100.

Finally, we calculate the `costPerDay` by dividing `totalDollars` by `daysCounter`, and display the result.