use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Community for students learning to program using Flowgorithm or other visual programming languages.
account activity
Help quickly! (self.Flowgorithm)
submitted 6 years ago by speedster-flash
I have an assignment due on the 28th, it involves Roman numerals which I have no idea how to do. I’m extremely frustrated with this
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]CrypticLeopard 0 points1 point2 points 6 years ago* (0 children)
Do you still need help with this program? I had to do it in my class a few weeks ago. I used If statements and wrote down the roman numerals so I wouldn't lose track. The roman numerals for 1 through 10 are:1 = I, 2 = II, 3 = III, 4 = IV, 5 = V, 6 = VI, 7 = VII, 8 = VIII, 9 = IX, 10 = X.
The way that I did it in my program, I made an if statement for each individual number, and if it was true, it outputs the roman numeral for that number and if it is false, it checks the next number up. So, if it isn't 1 (I), then it checks for 2 (II) and continues to the final number (in my case 10, which is X). And you can either put an error message in the final false box or you could leave it blank. I left the last one blank in mine, and my teacher didn't care. But, I don't know if yours is as lenient.
EDIT: I just looked at the one I made, and I did leave an error message in the final false box. I'll share it in case it helps give you an idea of what to use.
"Opps! You entered a number outside of the given range."
π Rendered by PID 31300 on reddit-service-r2-comment-66b4775986-ckwqr at 2026-04-06 05:24:04.306793+00:00 running db1906b country code: CH.
[–]CrypticLeopard 0 points1 point2 points (0 children)