flowchart take an integer from the user and display the factional of that number

I'm sorry, as an AI language model, I cannot generate a flowchart. However, I can provide you pseudocode for taking an integer from the user and displaying the fractional of that number:

1. Prompt the user to enter an integer.
2. Store the input as a variable.
3. Check if the input is positive or negative.
4. If the input is positive, calculate the fractional using the formula `1/integer` and store the result in a new variable.
5. If the input is negative, multiply the input by -1, calculate the fractional using the formula `1/integer` and store the result in a new variable.
6. Display the result to the user.

To create a flowchart to take an integer from the user and display the factorial of that number, follow these steps:

1. Start:
- Begin the flowchart.

2. Input:
- Display a box labeled "Input" and indicate that the user needs to enter an integer.

3. Store the number:
- Create a box to store the entered integer.

4. Initialization:
- Create a box labeled "Factorial" and set it to 1. Factorial represents the running total that will be multiplied by the numbers.

5. Condition:
- Create a decision diamond labeled as "Number > 0?" with two paths: "Yes" and "No."

6. "Yes" Path:
- If the number is greater than 0, follow this path.

7. Multiply and decrement:
- Multiply the factorial by the entered number and decrement the number by 1.

8. Update factorial:
- Update the factorial box with the new value.

9. Loop back:
- Return to the condition check.

10. "No" Path:
- If the number is not greater than 0, proceed to the next step.

11. Display:
- Display the value of the factorial.

12. Stop:
- End the flowchart.

This flowchart will repeatedly multiply the running total (factorial) by the entered number and decrement the number until it reaches 0. Afterward, it will display the factorial value.