From f131666965724f77d33dc06db5b95552a0822925 Mon Sep 17 00:00:00 2001 From: Joe Traver Date: Tue, 11 Oct 2022 21:55:13 -0700 Subject: Final touches --- .../CST116-Ch6-Debugging-joetraver-program-output.txt | 2 ++ .../CST116-Ch6-Debugging-joetraver30-program-output.txt | 2 -- .../CST116-Ch6-Debugging-joetraver30-psudo-code.txt | 17 ----------------- .../CST116-Ch6-Debugging-psudo-code.txt | 17 +++++++++++++++++ 4 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver-program-output.txt delete mode 100644 CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-program-output.txt delete mode 100644 CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt create mode 100644 CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver-program-output.txt b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver-program-output.txt new file mode 100644 index 0000000..0ac2182 --- /dev/null +++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver-program-output.txt @@ -0,0 +1,2 @@ +Enter temperature in Fahrenheit: 212 +212 degrees F = 100 degrees C \ No newline at end of file diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-program-output.txt b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-program-output.txt deleted file mode 100644 index 0ac2182..0000000 --- a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-program-output.txt +++ /dev/null @@ -1,2 +0,0 @@ -Enter temperature in Fahrenheit: 212 -212 degrees F = 100 degrees C \ No newline at end of file diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt deleted file mode 100644 index 594b9db..0000000 --- a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-joetraver30-psudo-code.txt +++ /dev/null @@ -1,17 +0,0 @@ -int_var - fahrenheit = 0 - celcius = 0 - -display - "Enter temperature in fahrenheit" -input_var - fahrenheit - -celcius to fahrenehit calculation - caelcuis = 5/9 * (fahrenheit - 32) - -display - output_var fahrenheit "degrees F =" - output_var celcous "degrees C" - -End \ No newline at end of file diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt new file mode 100644 index 0000000..594b9db --- /dev/null +++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt @@ -0,0 +1,17 @@ +int_var + fahrenheit = 0 + celcius = 0 + +display + "Enter temperature in fahrenheit" +input_var + fahrenheit + +celcius to fahrenehit calculation + caelcuis = 5/9 * (fahrenheit - 32) + +display + output_var fahrenheit "degrees F =" + output_var celcous "degrees C" + +End \ No newline at end of file -- cgit v1.2.3