The cost of 12pencil is rs 20.25 draw a flowchart to calculate the cost of one pencil

To draw a flowchart to calculate the cost of one pencil based on the given cost of 12 pencils, you can follow these steps:

Step 1: Start

Step 2: Assign the value of 20.25 to the variable "cost_of_12_pencils"

Step 3: Divide the value of "cost_of_12_pencils" by 12 to get the cost of one pencil

Step 4: Assign the result of the division to the variable "cost_of_one_pencil"

Step 5: Print or display the value of "cost_of_one_pencil"

Step 6: Stop

Here is a visual representation of the flowchart:

```
|------|
| Start|
|------|
|
V
|---------------------|
| cost_of_12_pencils= |
| 20.25 |
|---------------------|
|
V
|-----------------------|
| cost_of_one_pencil = |
| cost_of_12_pencils/12 |
|-----------------------|
|
V
|-------------------------------|
| |
| Print or display cost_of_one_pencil |
| |
|-------------------------------|
|
V
|-------|
| Stop |
|-------|
```

This flowchart outlines the steps to calculate the cost of one pencil based on the given cost of 12 pencils.