File tree Expand file tree Collapse file tree 6 files changed +22
-45
lines changed Expand file tree Collapse file tree 6 files changed +22
-45
lines changed Original file line number Diff line number Diff line change 18
18
<Platform >x64</Platform >
19
19
</ProjectConfiguration >
20
20
</ItemGroup >
21
+ <ItemGroup >
22
+ <ClCompile Include =" Main.cpp" />
23
+ </ItemGroup >
21
24
<PropertyGroup Label =" Globals" >
22
25
<VCProjectVersion >16.0</VCProjectVersion >
23
26
<Keyword >Win32Proj</Keyword >
137
140
<GenerateDebugInformation >true</GenerateDebugInformation >
138
141
</Link >
139
142
</ItemDefinitionGroup >
140
- <ItemGroup >
141
- <ClCompile Include =" Log.cpp" />
142
- <ClCompile Include =" Math.cpp" />
143
- </ItemGroup >
144
- <ItemGroup >
145
- <ClInclude Include =" Log.h" />
146
- </ItemGroup >
147
143
<Import Project =" $(VCTargetsPath)\Microsoft.Cpp.targets" />
148
144
<ImportGroup Label =" ExtensionTargets" >
149
145
</ImportGroup >
Original file line number Diff line number Diff line change 15
15
</Filter >
16
16
</ItemGroup >
17
17
<ItemGroup >
18
- <ClCompile Include =" Math .cpp" >
18
+ <ClCompile Include =" Main .cpp" >
19
19
<Filter >Fichiers sources</Filter >
20
20
</ClCompile >
21
- <ClCompile Include =" Log.cpp" >
22
- <Filter >Fichiers sources</Filter >
23
- </ClCompile >
24
- </ItemGroup >
25
- <ItemGroup >
26
- <ClInclude Include =" Log.h" >
27
- <Filter >Fichiers d%27en-tête</Filter >
28
- </ClInclude >
29
21
</ItemGroup >
30
22
</Project >
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ #include < iostream>
2
+
3
+ int main ()
4
+ {
5
+ char a = ' A' ;
6
+ std::cout << a << std::endl;
7
+
8
+ unsigned int variable = 8 ; // -4b -> 4b
9
+ std::cout << variable << std::endl;
10
+
11
+ variable = 20 ;
12
+ std::cout << sizeof (variable) << std::endl;
13
+
14
+ float floatVariable = 5 .5f ;
15
+ std::cout << floatVariable << std::endl;
16
+
17
+ std::cin.get ();
18
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments