top of page

CCC 2012 J1: Speed Fines are Not Fine!


Simple if and else-if statements while comparing inputs

limit = int(input("Enter the speed limit:"))
speed = int(input("Enter the recorded speed of the car:"))

if speed <= limit:
    print("Congratulations, you are within the speed limit!")
elif speed <= limit + 20:
    print("You are speeding and your fine is $100.")
elif speed <= limit + 30:
    print("You are speeding and your fine is $270.")
else:
    print("You are speeding and your fine is $500.")

Recent Posts

See All

CCC '24 J5 - Harvest Waterloo

#include<iostream> #include <vector> #include <algorithm> #include <cmath> #include <stack> using namespace std; int main() { int r, c,...

CCC '24 J4 - Troublesome Keys

s1 = input() s2 = input() silly = '' silly_o = '' quiete = '-' i = 0 j = 0 while i < len(s1) and j < len(s2): if s1[i] != s2[j]: if...

CCC '22 J5 - Square Pool

#include<iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; bool rowcom(pair<int, int> a, pair<int,...

Comments


bottom of page