Compare commits

..

39 Commits

Author SHA1 Message Date
idkWhatUserNameToUse 4be9e7b1ba Merge branch 'ІО-22/20-Папко-Максим' of https://github.com/ASDjonok/OOP_IO-2x_2023 into ІО-22/20-Папко-Максим 2023-04-14 20:08:03 +03:00
idkWhatUserNameToUse d1e20c015c Revert "reviwed and fixed lab1"
This reverts commit c95a243c84.
2023-04-14 20:07:51 +03:00
Maxim Papko ad7b0175ba Delete laboratorna1 directory 2023-04-14 11:40:50 +03:00
Maxim Papko c62613c975 Delete lab1_with_extracted_method directory 2023-04-14 11:15:23 +03:00
idkWhatUserNameToUse c95a243c84 reviwed and fixed lab1 2023-04-14 11:04:57 +03:00
Maxim Papko 63b1b6f62b Delete lab1_with_extracted_method.sln 2023-04-14 09:43:55 +03:00
Maxim Papko 1c68762d9d Delete lab1_with_extracted_method/obj directory 2023-04-14 09:43:45 +03:00
Maxim Papko ba82b49508 Delete lab1_with_extracted_method.csproj 2023-04-14 09:43:29 +03:00
Maxim Papko ee35a832b9 Delete lab1_with_extracted_method/.vs directory 2023-04-14 09:43:06 +03:00
Maxim Papko 7e652a976c Delete .vs directory 2023-03-31 21:17:36 +03:00
Maxim Papko 15685384a7 Delete Lab2.sln 2023-03-31 21:16:49 +03:00
Maxim Papko e6620839bd Delete Lab2.csproj.user 2023-03-31 21:16:44 +03:00
Maxim Papko f136101a3b Delete Lab2.csproj 2023-03-31 21:16:38 +03:00
Maxim Papko 59fb75ce32 Delete Lab2/obj directory 2023-03-31 21:16:25 +03:00
Maxim Papko b9570d75f8 Delete Lab2/bin/Debug/net6.0 directory 2023-03-31 21:16:07 +03:00
Maxim Papko ae0f85c8d6 Delete Lab2/.vs/Lab2 directory 2023-03-31 21:15:55 +03:00
idkWhatUserNameToUse 96dd638e66 added comment 2023-03-31 21:14:55 +03:00
idkWhatUserNameToUse 61760443a5 added comment 2023-03-31 21:13:42 +03:00
idkWhatUserNameToUse 8b517d136f lab2 with error 2023-03-31 21:10:47 +03:00
idkWhatUserNameToUse 9813f75326 extracted method with adding issue 2023-03-23 21:08:55 +02:00
idkWhatUserNameToUse 8ae3907d24 Merge branch 'ІО-22/20-Папко-Максим' of https://github.com/ASDjonok/OOP_IO-2x_2023 into ІО-22/20-Папко-Максим 2023-03-23 20:55:22 +02:00
idkWhatUserNameToUse a011fc41cf task completed in main method 2023-03-23 20:55:11 +02:00
Maxim Papko 4454d46284 Delete Lab1 directory 2023-03-23 20:40:46 +02:00
idkWhatUserNameToUse 4d70c6a51e Merge branch 'ІО-22/20-Папко-Максим' of https://github.com/ASDjonok/OOP_IO-2x_2023 into ІО-22/20-Папко-Максим 2023-03-23 20:40:02 +02:00
idkWhatUserNameToUse 8db686fac0 determined task 2023-03-23 20:39:53 +02:00
Maxim Papko a48fb7d41f Delete Lab1 directory 2023-03-23 20:37:22 +02:00
idkWhatUserNameToUse 09f2114de6 determined task 2023-03-23 20:35:38 +02:00
Maxim Papko 828dedc3b6 Add files via upload 2023-03-23 20:34:26 +02:00
Maxim Papko 41b6eb063c Delete Program.cs 2023-03-23 20:31:07 +02:00
Maxim Papko bb2c8bd1a0 Add files via upload 2023-03-23 20:30:52 +02:00
idkWhatUserNameToUse 88a618647d a certain option 2023-03-23 20:29:30 +02:00
idkWhatUserNameToUse f4fccadb7b Merge branch 'ІО-22/20-Папко-Максим' of https://github.com/ASDjonok/OOP_IO-2x_2023 into ІО-22/20-Папко-Максим 2023-03-19 16:53:25 +02:00
idkWhatUserNameToUse fb4c2404f7 added empty file 2023-03-19 16:53:05 +02:00
Maxim Papko 86940aa666 Delete Program.cs 2023-03-19 14:09:18 +02:00
Maxim Papko 1e368a1324 Add files via upload 2023-03-19 14:06:41 +02:00
Maxim Papko 559b03336e Delete Program.cs 2023-03-19 13:45:51 +02:00
Maxim Papko 0a7521af40 Delete .gitignore 2023-03-19 13:43:14 +02:00
Maxim Papko 0b51a1a491 Delete OOP_IO-2x_2023.iml 2023-03-19 13:43:08 +02:00
Maxim Papko f54eee595c Add files via upload 2023-03-19 13:42:50 +02:00
4 changed files with 35 additions and 92 deletions
-2
View File
@@ -1,2 +0,0 @@
# Project exclude paths
/out/
+32
View File
@@ -0,0 +1,32 @@
using System;
public class Laba2
{
public static void Main(string[] args)
{
const int a = 2;
int[][] b = new[]
{
new int[] { 1, 2, 8 },
new int[] { 3, 4, 5 },
new int[] { 6, 7, 9 }
};
calculation(b, a);
}
private static int[][] calculation(int[][] b, int a)
{
int[][]c = new int[b.Length][b[0].Length]; //недопустимий специфікатор рангу: вимагається "," або "]";
for (int i = 0; i < b.Length; i++)
{
c[i] = new int[b[i].Length];
for (int j = 0; j < b[i].Length; j++)
{
c[i][j] = b[i][j] * a;
}
}
return c;
}
}
-11
View File
@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
+3 -79
View File
@@ -1,36 +1,13 @@
public class Lab2 {
public static void main(String[] args) {
final int A = 2;
final int[][] MATRIX_B = {
{1, 202, 1, 1, 202, 3, 1, 202, 3,},
{1, 202, 1, 1, 202, 3, 1, 202, 3,},
{1, 1, 3, 1, 202, 3, 1, 202, 3,},
// {4, 5, 6,},
};
int[][] MATRIX_C = multiplication(A, MATRIX_B);
print(MATRIX_C);
System.out.println("Sum of smallest elements in every column: " + sumOfSmallestElementsInEveryColumn(MATRIX_C));
/*int[] array = {1, 2, 3};
int[] array2 = new int[3];
Object[] array3 = new String[3];
System.out.println(array3[0]); //nothing, trash from the memory, null || null
System.out.println(array2[0]); //nothing, trash from the memory, null || 0
System.out.println(array[0]); // || 1
int[][] matrix2 = new int[2][3];
matrix2[0] = new int[2];
matrix2[1] = new int[1];
for (int i = 0; i < array.length; i++) {
int[] array = {1, 2, 3};
/*for (int i = 0; i < array.length; i++) {
if (i % 2 == 0) {
System.out.println("!" + array[i]);
} else {
System.out.println("?" + array[i]);
}
}
}*/
for (int i = 0; i < array.length; i+=2) {
System.out.println("!" + array[i]);
@@ -45,58 +22,5 @@ public class Lab2 {
{1, 2},
{3}
};
// C=a×B, a - const
// final int[][] MATRIX_C = int;
MATRIX_B[0][0] = 2;
MATRIX_B[0] = new int[]{1, 2};
System.out.println(MATRIX_B[0][0]);
MATRIX_B = new int[][]{
{1, 2},
{3}
};*/
}
private static int sumOfSmallestElementsInEveryColumn(final int[][] MATRIX_C) {
// todo check different length of rows
// todo try to change i and j
// todo check repetition of minimal elements
int sum = 0;
for (int i = 0; i < MATRIX_C[0].length; i++) {
int tmpSmallest = MATRIX_C[0][i];
for (int j = 1; j < MATRIX_C.length; j++) {
if (MATRIX_C[j][i] < tmpSmallest) {
tmpSmallest = MATRIX_C[j][i];
}
}
sum += tmpSmallest;
}
return sum;
}
private static void print(final int[][] MATRIX_C) {
for (int i = 0; i < MATRIX_C.length; i++) {
for (int j = 0; j < MATRIX_C[i].length; j++) {
// System.out.print(MATRIX_C[i][j] + "\t");//printf("%4d",
System.out.printf("%4d ", MATRIX_C[i][j]);//printf("%4d",
}
System.out.println();
}
}
private static int[][] multiplication(int A, final int[][] MATRIX_B) {
final int[][] MATRIX_C = new int[MATRIX_B.length][/*MATRIX_B[0].length*/]; // todo !!!DANGER different lengths of rows
// final int[][] MATRIX_C = MATRIX_B;
for (int i = 0; i < MATRIX_B.length; i++) {
MATRIX_C[i] = new int[MATRIX_B[i].length];
for (int j = 0; j < MATRIX_B[i].length; j++) {
MATRIX_C[i][j] = MATRIX_B[i][j] * A;
}
}
return MATRIX_C;
}
}