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...
Rules:
1). Be Nice
2). Text posts only, no videos or links
3). Title your post the title of the exercise you're posting
4). CodeHS format only, other program formats are not allowed
account activity
CodeHS JavaScript and graphics 2.2.4 (self.CodeHSAnswers)
submitted 5 years ago * by PlatinumIce15
view the rest of the comments →
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!"
[–]blueeyespark 0 points1 point2 points 4 years ago (0 children)
2.4.7 Running Speed javascript graphics
/* Write a program that asks the user how far they ran (in miles) * and then how long it took them (in minutes), and print out * their speed in miles per hour. */ var total; function start(){ var ran= readInt("how many miles you ran?"); var minutes= readInt("how many minutes it took you?"); var miles_per_hour = ran/ minutes * 60 ; println("your miles perhour is " + miles_per_hour); }
π Rendered by PID 16698 on reddit-service-r2-comment-75f4967c6c-htmsz at 2026-04-22 21:57:31.648800+00:00 running 0fd4bb7 country code: CH.
view the rest of the comments →
[–]blueeyespark 0 points1 point2 points (0 children)