Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Prog1_WS2017_18_Wienkop
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Uwe Wienkop
Prog1_WS2017_18_Wienkop
Commits
109e7c4f
Commit
109e7c4f
authored
Dec 18, 2017
by
Uwe Wienkop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Klasse Person WS2015/16
parent
8308931d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
179 additions
and
0 deletions
+179
-0
Prog1_WS2017-18/11KlassePersonWS1516/11KlassePersonWS1516.csproj
...S2017-18/11KlassePersonWS1516/11KlassePersonWS1516.csproj
+60
-0
Prog1_WS2017-18/11KlassePersonWS1516/App.config
Prog1_WS2017-18/11KlassePersonWS1516/App.config
+6
-0
Prog1_WS2017-18/11KlassePersonWS1516/Program.cs
Prog1_WS2017-18/11KlassePersonWS1516/Program.cs
+71
-0
Prog1_WS2017-18/11KlassePersonWS1516/Properties/AssemblyInfo.cs
...WS2017-18/11KlassePersonWS1516/Properties/AssemblyInfo.cs
+36
-0
Prog1_WS2017-18/Prog1_WS2017-18.sln
Prog1_WS2017-18/Prog1_WS2017-18.sln
+6
-0
No files found.
Prog1_WS2017-18/11KlassePersonWS1516/11KlassePersonWS1516.csproj
0 → 100644
View file @
109e7c4f
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"14.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"
Condition=
"Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')"
/>
<PropertyGroup>
<Configuration
Condition=
" '$(Configuration)' == '' "
>
Debug
</Configuration>
<Platform
Condition=
" '$(Platform)' == '' "
>
AnyCPU
</Platform>
<ProjectGuid>
{84F9B5F3-7359-4ED7-910E-4974C54A2FBC}
</ProjectGuid>
<OutputType>
Exe
</OutputType>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<RootNamespace>
_11KlassePersonWS1516
</RootNamespace>
<AssemblyName>
11KlassePersonWS1516
</AssemblyName>
<TargetFrameworkVersion>
v4.5.2
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<AutoGenerateBindingRedirects>
true
</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "
>
<PlatformTarget>
AnyCPU
</PlatformTarget>
<DebugSymbols>
true
</DebugSymbols>
<DebugType>
full
</DebugType>
<Optimize>
false
</Optimize>
<OutputPath>
bin\Debug\
</OutputPath>
<DefineConstants>
DEBUG;TRACE
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "
>
<PlatformTarget>
AnyCPU
</PlatformTarget>
<DebugType>
pdbonly
</DebugType>
<Optimize>
true
</Optimize>
<OutputPath>
bin\Release\
</OutputPath>
<DefineConstants>
TRACE
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.Xml.Linq"
/>
<Reference
Include=
"System.Data.DataSetExtensions"
/>
<Reference
Include=
"Microsoft.CSharp"
/>
<Reference
Include=
"System.Data"
/>
<Reference
Include=
"System.Net.Http"
/>
<Reference
Include=
"System.Xml"
/>
</ItemGroup>
<ItemGroup>
<Compile
Include=
"Program.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"App.config"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
Prog1_WS2017-18/11KlassePersonWS1516/App.config
0 → 100644
View file @
109e7c4f
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
configuration
>
<
startup
>
<
supportedRuntime
version
=
"v4.0"
sku
=
".NETFramework,Version=v4.5.2"
/>
</
startup
>
</
configuration
>
\ No newline at end of file
Prog1_WS2017-18/11KlassePersonWS1516/Program.cs
0 → 100644
View file @
109e7c4f
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
_11KlassePersonWS1516
{
enum
MTyp
{
Angestellter
,
Gruppenleiter
,
Abteilungsleiter
}
class
Person
{
string
name
;
double
gehalt
;
int
persnr
;
MTyp
eingruppierung
;
static
int
naechstePersNr
=
1
;
public
Person
(
string
Name
,
double
Gehalt
,
MTyp
Eingruppierung
,
int
PersNr
=-
1
)
{
name
=
Name
;
gehalt
=
Gehalt
;
eingruppierung
=
Eingruppierung
;
if
(
PersNr
==
-
1
)
persnr
=
naechstePersNr
++;
// Nimm' naechstePersNr und speichere sie in PersNr
// Dann erhöhe naechstePersNr um 1
else
if
(
PersNr
>=
naechstePersNr
)
{
persnr
=
PersNr
;
naechstePersNr
=
persnr
+
1
;
}
else
throw
new
ArgumentOutOfRangeException
(
"Unzulässige Personalnummer"
);
}
public
static
int
NaechstePersNr
{
get
{
return
naechstePersNr
;
}
set
{
if
(
value
>=
naechstePersNr
)
naechstePersNr
=
value
;
else
throw
new
ArgumentOutOfRangeException
();
}
}
public
static
double
Gehaltsvolumen
(
Person
[]
Pfeld
,
MTyp
Mitarbeitertyp
)
{
double
gehaelter
=
0
;
foreach
(
Person
p
in
Pfeld
)
{
if
(
p
.
eingruppierung
==
Mitarbeitertyp
)
gehaelter
+=
p
.
gehalt
;
}
return
gehaelter
;
}
}
class
Program
{
static
void
Main
(
string
[]
args
)
{
Person
.
NaechstePersNr
=
100
;
Person
[]
personen
=
{
new
Person
(
"Huber"
,
2000
,
MTyp
.
Abteilungsleiter
),
new
Person
(
"Meier"
,
2200
,
MTyp
.
Gruppenleiter
)
};
double
gehaelter
=
Person
.
Gehaltsvolumen
(
personen
,
MTyp
.
Gruppenleiter
);
}
}
}
Prog1_WS2017-18/11KlassePersonWS1516/Properties/AssemblyInfo.cs
0 → 100644
View file @
109e7c4f
using
System.Reflection
;
using
System.Runtime.CompilerServices
;
using
System.Runtime.InteropServices
;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[
assembly
:
AssemblyTitle
(
"11KlassePersonWS1516"
)]
[
assembly
:
AssemblyDescription
(
""
)]
[
assembly
:
AssemblyConfiguration
(
""
)]
[
assembly
:
AssemblyCompany
(
""
)]
[
assembly
:
AssemblyProduct
(
"11KlassePersonWS1516"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2017"
)]
[
assembly
:
AssemblyTrademark
(
""
)]
[
assembly
:
AssemblyCulture
(
""
)]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[
assembly
:
ComVisible
(
false
)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[
assembly
:
Guid
(
"84f9b5f3-7359-4ed7-910e-4974c54a2fbc"
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
"1.0.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.0.0.0"
)]
Prog1_WS2017-18/Prog1_WS2017-18.sln
View file @
109e7c4f
...
...
@@ -83,6 +83,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "10CallByReference", "10Call
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "11StringFunktionen", "11StringFunktionen\11StringFunktionen.csproj", "{083C94EB-CBE5-4465-B3C4-5286DAD35D14}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "11KlassePersonWS1516", "11KlassePersonWS1516\11KlassePersonWS1516.csproj", "{84F9B5F3-7359-4ED7-910E-4974C54A2FBC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
...
...
@@ -237,6 +239,10 @@ Global
{083C94EB-CBE5-4465-B3C4-5286DAD35D14}.Debug|Any CPU.Build.0 = Debug|Any CPU
{083C94EB-CBE5-4465-B3C4-5286DAD35D14}.Release|Any CPU.ActiveCfg = Release|Any CPU
{083C94EB-CBE5-4465-B3C4-5286DAD35D14}.Release|Any CPU.Build.0 = Release|Any CPU
{84F9B5F3-7359-4ED7-910E-4974C54A2FBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{84F9B5F3-7359-4ED7-910E-4974C54A2FBC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{84F9B5F3-7359-4ED7-910E-4974C54A2FBC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{84F9B5F3-7359-4ED7-910E-4974C54A2FBC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment