diff options
| author | Birducken <[email protected]> | 2022-11-07 21:47:49 -0800 |
|---|---|---|
| committer | Birducken <[email protected]> | 2022-11-07 21:47:49 -0800 |
| commit | 6b8de3a12fba5be6ca47849cb699cae2a3eccaee (patch) | |
| tree | 24c270536e5b5065a43308e1e053d4cfbd7570ff | |
| parent | Changed version number. (diff) | |
| download | cst116-lab2-stark-6b8de3a12fba5be6ca47849cb699cae2a3eccaee.tar.xz cst116-lab2-stark-6b8de3a12fba5be6ca47849cb699cae2a3eccaee.zip | |
Added psuedo code.
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.vcxproj | 4 | ||||
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.vcxproj.filters | 3 | ||||
| -rw-r--r-- | BlankConsoleLab/cst116-lab2-stark-psuedo-code.txt | 20 |
3 files changed, 27 insertions, 0 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.vcxproj b/BlankConsoleLab/BlankConsoleLab.vcxproj index cd7cd6a..02c647b 100644 --- a/BlankConsoleLab/BlankConsoleLab.vcxproj +++ b/BlankConsoleLab/BlankConsoleLab.vcxproj @@ -24,6 +24,7 @@ <ProjectGuid>{3cecade6-3e15-4852-bd24-65bfe5d3a3aa}</ProjectGuid> <RootNamespace>BlankConsoleLab</RootNamespace> <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> + <ProjectName>Lab2</ProjectName> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> @@ -141,6 +142,9 @@ <ItemGroup> <ClCompile Include="cst116-lab2-stark.cpp" /> </ItemGroup> + <ItemGroup> + <Text Include="cst116-lab2-stark-psuedo-code.txt" /> + </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> diff --git a/BlankConsoleLab/BlankConsoleLab.vcxproj.filters b/BlankConsoleLab/BlankConsoleLab.vcxproj.filters index 2c5af16..aba2732 100644 --- a/BlankConsoleLab/BlankConsoleLab.vcxproj.filters +++ b/BlankConsoleLab/BlankConsoleLab.vcxproj.filters @@ -19,4 +19,7 @@ <Filter>Source Files</Filter> </ClCompile> </ItemGroup> + <ItemGroup> + <Text Include="cst116-lab2-stark-psuedo-code.txt" /> + </ItemGroup> </Project>
\ No newline at end of file diff --git a/BlankConsoleLab/cst116-lab2-stark-psuedo-code.txt b/BlankConsoleLab/cst116-lab2-stark-psuedo-code.txt new file mode 100644 index 0000000..51becea --- /dev/null +++ b/BlankConsoleLab/cst116-lab2-stark-psuedo-code.txt @@ -0,0 +1,20 @@ +Trenton Stark +CST 116 +Lab2 Psuedo code: + +print "Welcome to Cold Calculator v1.0" + +ask user if they would like to input in celcius or fahrenheit +if the user inputs f: + input temperature into fTemp + set cTemp to conversion into celcius + +if the user inputs c: + input temperature into cTemp + set fTemp to conversion into fahrenheit + +ask user for windspeed in mph and input into windS + +set windC to the windchill with fTemp and windS + +output cTemp, fTemp, windS, and windC in a table with header
\ No newline at end of file |