about | help | code help+videos | done | prefs |
distance
Write a function distance(x1, y1, x2, y2) that returns the distance between points (x1; y1) and (x2; y2). If you do not remember the formula for the distance between two Cartesian points, you may google it. You may assume that the function you are writing is part of a larger program where the math module has already been imported. distance(0, 0, 1, 0) → 1.0 distance(0, 3, 4, 0) → 5.0 distance(13, 1, 1, -4) → 13.0 ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy