
python - Fishing simulator - Code Review Stack Exchange
Apr 13, 2019 · I'm new to Python, for a school project I created a "fishing simulator". Basically, it is a use of random. I know that my code is repetitive towards the end, but I don't know how to simplify it. i...
Premier League simulation - Code Review Stack Exchange
Aug 6, 2019 · I've created a simulator for the Premier League, which takes in all of the 20 teams and plays them against each other, recording the results and outputting a table at the end. The skill levels …
Powerball Lottery Simulator in C - Code Review Stack Exchange
I made a Powerball lottery simulator in C. I chose C because it is fast. Here's how it plays: The user plays one ticket every day. The user can choose to play the same ticket every day or a differ...
object oriented - Code Review Stack Exchange
Jul 25, 2016 · I'm making a file downloader using Java. The project is on GitHub; I have included the most relevant excerpts here. I separate the file into parts and download them using HTTP Range …
lc 3 - Efficient LC3 assembly code to print the numbers leading up to ...
Feb 9, 2018 · 1 I'm using an LC3 microarchitecture simulator to write assembly code. I've only been writing assembly for about three weeks, so I am still very new. My goal is to print all the numbers …
First C# program (Snake game) - Code Review Stack Exchange
May 5, 2016 · I've just started out using C#. I've used Scratch (drag and drop programming for kids) for quite some time. Since Scratch didn't have classes and methods I have a feeling this code could be …
Simple Python turn based battle game - Code Review Stack Exchange
Feb 20, 2020 · f-strings Beginning with Python 3.6, there is a friendlier way of formatting strings. Instead of using "format string" % (tuple_of_args) where the argument and the format codes are separated …
Rolling dice simulator with probability - Code Review Stack Exchange
Jul 31, 2017 · Rolling dice simulator with probability Ask Question Asked 8 years, 4 months ago Modified 4 years, 9 months ago
Solar System simulation with real values in Pygame
Nov 21, 2022 · Inspired by TechWithTim, I built up the solar system including Pluto. I have added a camera feature, zoom feature and displaying information about the selected planet. Zoom in and out …
object oriented - Simple Pizza Ordering Application in Java - Code ...
Sep 21, 2020 · I was inspired by a previous post here that also wrote a pizza ordering application. This is the attempt I have made using OOP in mind as I thought that would be just the way to go. Here is …