summaryrefslogtreecommitdiff
path: root/Project1/inclass6.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-01-25 18:26:39 -0800
committerConnor McDowell <[email protected]>2024-01-25 18:26:39 -0800
commit0d711b8f35474ea0a93fdedf47dd86d0aa102986 (patch)
treedaeab51e541b981b21db58918ead6aa46712c90c /Project1/inclass6.cpp
parententering filler (diff)
downloadarchived-in-class-exercise-6-connormcdowell275-0d711b8f35474ea0a93fdedf47dd86d0aa102986.tar.xz
archived-in-class-exercise-6-connormcdowell275-0d711b8f35474ea0a93fdedf47dd86d0aa102986.zip
big double check, everything should be working now actually, we're good
Diffstat (limited to 'Project1/inclass6.cpp')
-rw-r--r--Project1/inclass6.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/Project1/inclass6.cpp b/Project1/inclass6.cpp
index 211d467..9f178b6 100644
--- a/Project1/inclass6.cpp
+++ b/Project1/inclass6.cpp
@@ -5,7 +5,7 @@
#include <iostream>
-#include "helper.h"
+#include "header.h"
int main()
{
@@ -15,8 +15,9 @@ int main()
std::cout << returnInt() << std::endl;
- std::cout << percentage() << std::endl;
- std::cout << FotC(0) << std::endl;
+ std::cout << percentage(45, 78) << std::endl;
+ std::cout << FtoC(120) << std::endl;
+ std::cout << CtoF(40) << std::endl;
std::cout << returnInt() << std::endl;
}