summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacobdw22 <[email protected]>2022-11-02 01:09:48 -0700
committerjacobdw22 <[email protected]>2022-11-02 01:09:48 -0700
commitdef3d770c674f15b453accd11c2b39e69c2337fe (patch)
tree2173cbead35a37402b2ad239c3d179dbf628ac8d
parentSetting up GitHub Classroom Feedback (diff)
downloadcst116-lab2-jacobdw22-def3d770c674f15b453accd11c2b39e69c2337fe.tar.xz
cst116-lab2-jacobdw22-def3d770c674f15b453accd11c2b39e69c2337fe.zip
Simple changes
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp11
-rw-r--r--BlankConsoleLab/BlankConsoleLab.vcxproj8
2 files changed, 15 insertions, 4 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index ed5f807..c448418 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -2,13 +2,24 @@
//
#include <iostream>
+#include <stdio.h> /* printf */
+#include <math.h> /* pow */
+
using namespace std;
+
using std::cout;
using std::cin;
using std::endl;
+
+const float FMAX = 121;
+const float FMIN = -80;
+const float CMAX = 49.5;
+const float CMIN = -62;
+
+
int main()
{
cout << "Hello World!\n";
diff --git a/BlankConsoleLab/BlankConsoleLab.vcxproj b/BlankConsoleLab/BlankConsoleLab.vcxproj
index db2e734..d2e3ee2 100644
--- a/BlankConsoleLab/BlankConsoleLab.vcxproj
+++ b/BlankConsoleLab/BlankConsoleLab.vcxproj
@@ -29,26 +29,26 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>