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

I'm sorry, as an AI language model, I do not have the capability to create flowcharts. However, here's a Python code that can solve the problem of taking an integer from the user and displaying its fractional value:

```
# Prompt user to enter an integer
integer = int(input("Enter an integer: "))

# Calculate the fractional value
fractional = 1 / integer

# Display the fractional value
print(f"The fractional value of {integer} is {fractional}")
```

Alternatively, if you want to display the output in a formatted way you can use the `format` method to limit the fraction to a specific number of decimal places:

```
# Prompt user to enter an integer
integer = int(input("Enter an integer: "))

# Calculate the fractional value
fractional = 1 / integer

# Display the fractional value with two decimal places
print("The fractional value of {} is {:.2f}".format(integer, fractional))
```

This code takes in an integer from the user using the `input` function and stores it in the `integer` variable after converting it to an integer using `int()`. It calculates the fractional value of the integer by dividing 1 by the integer and stores it in the `fractional` variable. Finally, it displays the fractional value using the `print` function.

Here is a step-by-step flowchart to take an integer from the user and display the factorial of that number:

1. Start
2. Display "Enter an integer:"
3. Read the input value as "num"
4. Initialize a variable "factorial" with a value of 1
5. Initialize a variable "i" with a value of 1
6. Repeat the following steps while "i" is less than or equal to "num":
7. Multiply "factorial" by "i" and update the value of "factorial"
8. Increment the value of "i" by 1
9. Display "The factorial of "num" is "factorial"
10. Stop

Please note that in the flowchart, "num" represents the user input integer, "factorial" represents the calculated factorial, and "i" is a counter variable used in the loop to multiply the factorial.