diff --git a/lab15/lab15.sln b/lab15/lab15.sln new file mode 100644 index 0000000..9b87ce2 --- /dev/null +++ b/lab15/lab15.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35222.181 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lab15", "lab15\lab15.vcxproj", "{902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Debug|x64.ActiveCfg = Debug|x64 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Debug|x64.Build.0 = Debug|x64 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Debug|x86.ActiveCfg = Debug|Win32 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Debug|x86.Build.0 = Debug|Win32 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Release|x64.ActiveCfg = Release|x64 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Release|x64.Build.0 = Release|x64 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Release|x86.ActiveCfg = Release|Win32 + {902B41F1-7B03-47BD-AC58-E6BCF2D8C91A}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {200200DD-AD84-4956-B115-7A21B793F91E} + EndGlobalSection +EndGlobal diff --git a/lab15/lab15/lab15.vcxproj b/lab15/lab15/lab15.vcxproj new file mode 100644 index 0000000..99d980d --- /dev/null +++ b/lab15/lab15/lab15.vcxproj @@ -0,0 +1,135 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {902b41f1-7b03-47bd-ac58-e6bcf2d8c91a} + lab15 + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/lab15/lab15/lab15.vcxproj.filters b/lab15/lab15/lab15.vcxproj.filters new file mode 100644 index 0000000..669bc4e --- /dev/null +++ b/lab15/lab15/lab15.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Исходные файлы + + + \ No newline at end of file diff --git a/lab15/lab15/main.c b/lab15/lab15/main.c new file mode 100644 index 0000000..0e5a50a --- /dev/null +++ b/lab15/lab15/main.c @@ -0,0 +1,119 @@ +#include +#include +#include + +#define MAX_M 6 +#define MAX_N 6 + +int m = 3; +int n = 3; + +int arr[MAX_M][MAX_N] = { + {1, 2, 3}, + {4, 5, 6}, + {7, 8, 9} +}; + +void printarr() { + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + printf("%2d ", arr[i][j]); + } + printf("\n"); + } +} + +void fill_with_indexes() { + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + arr[i][j] = (i * 10) + j; + } + } +} + +void fillZero() { + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + arr[i][j] = 0; + } + } +} + +void fillRand() { + for (int i = 0; i < m; i++) { + for (int j = 0; j < n; j++) { + arr[i][j] = rand() % 10; + } + } +} + +void findMin() { + int min = arr[0][0]; + int iMin = 0; + int jMin = 0; + for (int i = 0; i < n; i++) { + for (int j = 0; j < m; j++) { + if (arr[i][j] < min) { + printf("min = %d\n", arr[i][j]); + printf("imin = %d\n", i); + printf("jmin = %d\n", j); + } + } + } + +} + + +int main() { + SetConsoleCP(1251); + SetConsoleOutputCP(1251); + + int n = 0; + do { + puts("\n"); + printf(" :\n"); + printarr(arr); + puts(" "); + puts("1) i * 10 + j"); + puts("2) "); + puts("3) 0 9"); + puts("4) "); + puts("5) "); + puts("6) "); + puts("7) "); + puts("99) "); + puts("10) "); + puts("11) "); + puts(""); + puts("0) "); + + while (scanf_s(" %d", &n) != 1) { + scanf_s("%*[^\n]"); + scanf_s("%*c"); + } + puts(""); + + switch (n) + { + case 1: + fill_with_indexes(); + break; + case 2: + fillZero(); + break; + case 3: + fillRand(); + break; + case 4: + + break; + case 0: + puts(" :3"); + break; + default: + puts(": N"); + break; + } + } while (n != 0); + return 0; +} \ No newline at end of file