Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 22 additions & 0 deletions AlexandrTkachuk/1/ConsoleApplication/ConsoleApplication.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task1MyName", "Task1MyName\Task1MyName.csproj", "{DBA64E87-EA8B-4DF4-850E-1338F7FE2ED8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DBA64E87-EA8B-4DF4-850E-1338F7FE2ED8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBA64E87-EA8B-4DF4-850E-1338F7FE2ED8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBA64E87-EA8B-4DF4-850E-1338F7FE2ED8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBA64E87-EA8B-4DF4-850E-1338F7FE2ED8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file not shown.
6 changes: 6 additions & 0 deletions AlexandrTkachuk/1/ConsoleApplication/Task1MyName/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
19 changes: 19 additions & 0 deletions AlexandrTkachuk/1/ConsoleApplication/Task1MyName/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Task1MyName
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("+--------------------------------+");
Console.WriteLine("| Tkachuk Alexandr Alexandrovich |");
Console.WriteLine("+--------------------------------+");
Console.ReadKey();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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("Task1MyName")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Task1MyName")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[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("f8bc48aa-c07d-4759-9c58-c7183b7f8578")]

// 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")]
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.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>{DBA64E87-EA8B-4DF4-850E-1338F7FE2ED8}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Task1MyName</RootNamespace>
<AssemblyName>Task1MyName</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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.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>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
C:\Users\Alexandr\Documents\Visual Studio 2013\Projects\C#\ISD\ConsoleApplication\Task1MyName\bin\Debug\Task1MyName.exe.config
C:\Users\Alexandr\Documents\Visual Studio 2013\Projects\C#\ISD\ConsoleApplication\Task1MyName\bin\Debug\Task1MyName.exe
C:\Users\Alexandr\Documents\Visual Studio 2013\Projects\C#\ISD\ConsoleApplication\Task1MyName\bin\Debug\Task1MyName.pdb
C:\Users\Alexandr\Documents\Visual Studio 2013\Projects\C#\ISD\ConsoleApplication\Task1MyName\obj\Debug\Task1MyName.csprojResolveAssemblyReference.cache
C:\Users\Alexandr\Documents\Visual Studio 2013\Projects\C#\ISD\ConsoleApplication\Task1MyName\obj\Debug\Task1MyName.exe
C:\Users\Alexandr\Documents\Visual Studio 2013\Projects\C#\ISD\ConsoleApplication\Task1MyName\obj\Debug\Task1MyName.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
64 changes: 64 additions & 0 deletions AlexandrTkachuk/1/CyclicConstructions/CyclicConstructions.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task1MultiplicationTable", "Task1MultiplicationTable\Task1MultiplicationTable.csproj", "{BD1B81C5-2A13-43E6-84AD-6B3FBD442E99}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task2QuantityOfDigits", "Task2QuantityOfDigits\Task2QuantityOfDigits.csproj", "{7EC4D1BA-4514-4BAA-934D-484DBB3E66EB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task3GuessTheNumber", "Task3GuessTheNumber\Task3GuessTheNumber.csproj", "{DBB4C5B0-09D1-4A70-BB1C-1FC5D0F316FF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task4TheSquaresOfTheNumbers", "Task4TheSquaresOfTheNumbers\Task4TheSquaresOfTheNumbers.csproj", "{42E6F0EC-9931-4222-B047-E6E60E3AC55F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task5UsersArithmeticMean", "Task5UsersArithmeticMean\Task5UsersArithmeticMean.csproj", "{25B1B6EF-3F50-419C-A1D4-A7F81CE1CE23}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task6ArithmeticMean", "Task6ArithmeticMean\Task6ArithmeticMean.csproj", "{4FC089A3-1159-482A-853F-4526B0E40D76}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task7GeeseAndRabbits", "Task7GeeseAndRabbits\Task7GeeseAndRabbits.csproj", "{9001D001-7B19-4AFE-835A-B51823497708}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task8CorrectPassword", "Task8CorrectPassword\Task8CorrectPassword.csproj", "{7E257C81-9494-443E-9934-89A85381A15A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BD1B81C5-2A13-43E6-84AD-6B3FBD442E99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BD1B81C5-2A13-43E6-84AD-6B3FBD442E99}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BD1B81C5-2A13-43E6-84AD-6B3FBD442E99}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BD1B81C5-2A13-43E6-84AD-6B3FBD442E99}.Release|Any CPU.Build.0 = Release|Any CPU
{7EC4D1BA-4514-4BAA-934D-484DBB3E66EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7EC4D1BA-4514-4BAA-934D-484DBB3E66EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7EC4D1BA-4514-4BAA-934D-484DBB3E66EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7EC4D1BA-4514-4BAA-934D-484DBB3E66EB}.Release|Any CPU.Build.0 = Release|Any CPU
{DBB4C5B0-09D1-4A70-BB1C-1FC5D0F316FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBB4C5B0-09D1-4A70-BB1C-1FC5D0F316FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBB4C5B0-09D1-4A70-BB1C-1FC5D0F316FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBB4C5B0-09D1-4A70-BB1C-1FC5D0F316FF}.Release|Any CPU.Build.0 = Release|Any CPU
{42E6F0EC-9931-4222-B047-E6E60E3AC55F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42E6F0EC-9931-4222-B047-E6E60E3AC55F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42E6F0EC-9931-4222-B047-E6E60E3AC55F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42E6F0EC-9931-4222-B047-E6E60E3AC55F}.Release|Any CPU.Build.0 = Release|Any CPU
{25B1B6EF-3F50-419C-A1D4-A7F81CE1CE23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{25B1B6EF-3F50-419C-A1D4-A7F81CE1CE23}.Debug|Any CPU.Build.0 = Debug|Any CPU
{25B1B6EF-3F50-419C-A1D4-A7F81CE1CE23}.Release|Any CPU.ActiveCfg = Release|Any CPU
{25B1B6EF-3F50-419C-A1D4-A7F81CE1CE23}.Release|Any CPU.Build.0 = Release|Any CPU
{4FC089A3-1159-482A-853F-4526B0E40D76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4FC089A3-1159-482A-853F-4526B0E40D76}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4FC089A3-1159-482A-853F-4526B0E40D76}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4FC089A3-1159-482A-853F-4526B0E40D76}.Release|Any CPU.Build.0 = Release|Any CPU
{9001D001-7B19-4AFE-835A-B51823497708}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9001D001-7B19-4AFE-835A-B51823497708}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9001D001-7B19-4AFE-835A-B51823497708}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9001D001-7B19-4AFE-835A-B51823497708}.Release|Any CPU.Build.0 = Release|Any CPU
{7E257C81-9494-443E-9934-89A85381A15A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7E257C81-9494-443E-9934-89A85381A15A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7E257C81-9494-443E-9934-89A85381A15A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7E257C81-9494-443E-9934-89A85381A15A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Task1MultiplicationTable
{
class Program
{
static void Main(string[] args)
{
Console.Write("Введите число : ");
int num = Convert.ToInt32(Console.ReadLine());
for (int i = 1; i <= 20; i++)
{
Console.WriteLine(num + " * " + i + " = " + num * i);
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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("Task1MultiplicationTable")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Task1MultiplicationTable")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[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("5587cc57-184d-4394-bb6c-d7a473f14c4e")]

// 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")]
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.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>{BD1B81C5-2A13-43E6-84AD-6B3FBD442E99}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Task1MultiplicationTable</RootNamespace>
<AssemblyName>Task1MultiplicationTable</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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.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>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
Loading