Obtaining the total from a percentage

72 Views Asked by At

$x$ is $20$ percent of $t$.

t=?; //to compute
x=198; 

Example

compressed = 64;
uncompressed = (100 / 20) * 64;

//is it correct?

How can I compute $t$?

1

There are 1 best solutions below

0
On BEST ANSWER

x is 20% of t means: $x=0.2\cdot t \quad \implies  \quad t=5\cdot x$