Okay, this is a real-time problem.
The following is a picture of Customer satisfaction rating, which was displayed next to an item in an online shopping website.

Satisfied customers click the vote-up button, and unsatisfied customers click the vote-down button. Every time a button is clicked, the rating changes accordingly.
From the above image, we can infer that 94% of the people are satisfied with the product and the rest 6% aren't satisfied.
Now, is there any way to find out the number of people who participated in voting?
Edit: It's clear that there could be infinite solutions evident from Lord Soth's answer. So, I'll change the question a bit. What could be the minimum no of people who participated in voting??
No, though you can infer some limits if you know how the program rounds. The smallest number of voters who can produce a percentage that rounds normally to $94$% is $16$: $\frac{15}{16}=0.9375$, while $\frac{14}{15}$ is only $0.9333\dots\;$. If the program truncates instead of rounding, there must have been at least $17$: $\frac{16}{17}\approx0.9412$. But what you can infer is at best pretty minimal and probably not useful.
Added: In general the minimum number voting is the smallest $n$ such that some fraction $\frac{m}n$ rounds to the decimal corresponding to the percentage of satisfied customers. If that percentage is given as an integer, and if the rounding is done normally (with rounding up at the halves), the requirement is that
$$\frac1{100}\left(p-\frac12\right)\le\frac{m}n<\frac1{100}\left(p+\frac12\right)\;,$$
where $p$ is the percentage of satisfied customers. This can be rewritten as
$$p-\frac12\le m\cdot\frac{100}n<p+\frac12$$
and thence as
$$\frac{n}{100}\left(p-\frac12\right)\le m<\frac{n}{100}\left(p+\frac12\right)\;.$$
Thus, you want the smallest integer $n$ such that the interval
$$\left[\frac{n}{100}\left(p-\frac12\right),\frac{n}{100}\left(p+\frac12\right)\right)$$
contains an integer.