public static string RatingCalculator(int input)
{
if (input < 10)
{
return string.Empty;
}
if (input > 10 && input < 20)
{
return "<img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star_empty.png\" alt=\"-\" /><img src=\"/images/star_empty.png\" alt=\"-\" /><img src=\"/images/star_empty.png\" alt=\"-\" /><img src=\"/images/star_empty.png\" alt=\"-\" />";
}
if (input > 21 && input < 40)
{
return "<img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star_empty.png\" alt=\"-\" /><img src=\"/images/star_empty.png\" alt=\"-\" /><img src=\"/images/star_empty.png\" alt=\"-\" />";
}
if (input > 41 && input < 70)
{
return "<img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star_empty.png\" alt=\"-\" /><img src=\"/images/star_empty.png\" alt=\"-\" />";
}
if (input > 11 && input < 120)
{
return "<img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star_empty.png\" alt=\"-\" />";
}
else
{
return "<img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" /><img src=\"/images/star.png\" alt=\"*\" />";
}
}
|
|
|
||||
|
|
|
Look at the common parts and try and extract them. Your image tag of a "Full Star" never changes Your image tag of an "Empty Star" never changes so you can extract both of those for readability into variables. Same goes for the formatter string, there will always be "5 consecutive star types" How about
Alternatively you could use a string builder
|
||||||||||||
|
|
|
That many string literals in code is bound to look horribly ugly. Also, I'm not sure why the gaps in the values are non-constant (or don't even increase regularly), but that's not a big issue. Try this:
|
||
|
|
|
Sorry for posting a JavaScript solution (tested on Mozilla Rhino), but I don't know that much C# and I believe the algorithm is interesting here.
Maybe it helps somehow. |
||||||||||
|
|
|
Not much shorter really, but the readability is much better. |
||
|
|
|
|
|
||||
|
|
|
I was trying a loop such as (note the logic is off as I gave up on the solution):
{ String rating = "";
} But then noticed the non-linear growth in the ratings 10,20,40,70 etc... Using the above answer you could shorten it and make it more readable by factoring out the strings to:
Which added to the answer above would make it:
|
||
|
|
|
|
I would do something like this:
|
||
|
|
|
|
Still not great, but if you rationalize your input (so it doesn't jump by arbitrary amounts), you could get starCount from regular integer division. |
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
