Computer Science, asked by yashrile1795, 5 months ago

Find the output of A=10 B=3 C=7 print(A/B) print(A%B) print(A//B) print(A**B)

Answers

Answered by Imblank
1

Answer:

A/B = 3

A%B = 1

A//B = 3.333333

A**B = 1000

Read my bio once

Similar questions