Can i use the points system to rank characters?

i’m writing a story in the format of a reality show, where the reader controls all the characters’ choices, not just a single one, so that the character with the most points is announced the winner of the season.

i want to know if the points system can help me rank the characters from 1 to 9, (if not, i think I’ll just let the reader decide who wins.)

2 Likes

It may get a little messy, but I think the way to do this is:

if (CHARACTER1 > CHARACTER2) {
if (CHARACTER1 > CHARACTER3) {
if (CHARACTER1 > CHARACTER4) {
if (CHARACTER1 > CHARACTER5) {
if (CHARACTER1 > CHARACTER6) {
if (CHARACTER1 > CHARACTER7) {
if (CHARACTER1 > CHARACTER8) {
if (CHARACTER1 > CHARACTER9) {

CHARACTER1 wins

}}}}}}}}

And then repeat for each character.

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.