From 613cfe16b575cff2800d9b13fc73c51215f11c71 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Sat, 23 Feb 2019 17:48:39 -0600 Subject: Dividing by 0 is a no --- ee1301/wk3/hw3_directory/strap012_HW3A.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ee1301/wk3/hw3_directory/strap012_HW3A.cpp b/ee1301/wk3/hw3_directory/strap012_HW3A.cpp index 491628e..fd051fd 100644 --- a/ee1301/wk3/hw3_directory/strap012_HW3A.cpp +++ b/ee1301/wk3/hw3_directory/strap012_HW3A.cpp @@ -27,11 +27,11 @@ int spin_the_wheel(int d, int w) { return 1; } int main () { - long n=1000000; + long n=0; int m=0; - int d= 3; - int w= 9; - for (n; n>0; n--) { + float d= 3; + float w= 9; + for (n; n<=1000000; n++) { m = spin_the_wheel(d,w); if (m==1) { m++; -- cgit v1.2.3