Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Садунов Максим ПРИ-201 #763

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions task01/src/com/example/task01/Task01Main.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
package com.example.task01;

import java.nio.charset.StandardCharsets;

public class Task01Main {
public static void main(String[] args) {
//здесь вы можете вручную протестировать ваше решение, вызывая реализуемый метод и смотря результат
// например вот так:
/*
codeWithNPE();
*/

}

static void codeWithNPE() {
//todo напишите здесь свою корректную реализацию этого метода, вместо существующей
static void codeWithNPE(){
try {
String test = null; //Любой ссылчный тип данных
System.out.println(test.getBytes(StandardCharsets.UTF_8));
}
catch (NullPointerException e){
System.out.println(e);
}

}
}
26 changes: 20 additions & 6 deletions task02/src/com/example/task02/Task02Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,28 @@
public class Task02Main {

public static void main(String[] args) {
//здесь вы можете вручную протестировать ваше решение, вызывая реализуемый метод и смотря результат
// например вот так:
/*
System.out.println(getSeason(-5));
*/
try {
System.out.println(getSeason(-5));
} catch (IllegalArgumentException e) {
System.out.println(e.getMessage());
}

}

static String getSeason(int monthNumber) {
return "";//todo напишите здесь свою корректную реализацию этого метода, вместо существующей
if ((monthNumber <= 2 && monthNumber >= 1)|| monthNumber == 12){
return "зима";
}
else if (monthNumber >= 3 && monthNumber <= 5){
return "весна";
}
else if (monthNumber >= 6 && monthNumber <= 8){
return "лето";
}
else if (monthNumber >= 9 && monthNumber <= 11){
return "осень";
}
throw new IllegalArgumentException("monthNumber " + monthNumber + " is invalid, month number should be between 1..12");

}
}
12 changes: 5 additions & 7 deletions task03/src/com/example/task03/Task03Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@

public class Task03Main {
public static void main(String[] args) {
//здесь вы можете вручную протестировать ваше решение, вызывая реализуемый метод и смотря результат
// например вот так:
/*
throwCheckedException();
*/

// throwCheckedException();

}

//todo напишите здесь свою корректную реализацию задания
public static void throwCheckedException() {

public static void throwCheckedException() throws Exception {
throw new Exception();
}
}
7 changes: 7 additions & 0 deletions task04/src/com/example/task04/MyException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.example.task04;

public class MyException extends IllegalArgumentException {
MyException(String message) {
super(message);
}
}
15 changes: 14 additions & 1 deletion task04/src/com/example/task04/Task04Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,20 @@ public static void main(String[] args) {
}

static String getSeason(int monthNumber) {
return "";//todo напишите здесь свою корректную реализацию этого метода, вместо существующей
if ((monthNumber <= 2 && monthNumber >= 1)|| monthNumber == 12){
return "зима";
}
else if (monthNumber >= 3 && monthNumber <= 5){
return "весна";
}
else if (monthNumber >= 6 && monthNumber <= 8){
return "лето";
}
else if (monthNumber >= 9 && monthNumber <= 11){
return "осень";
}
throw new MyException("monthNumber " + monthNumber + " is invalid, month number should be between 1..12");

}

}
14 changes: 11 additions & 3 deletions task05/src/com/example/task05/Task05Main.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
package com.example.task05;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

public class Task05Main {
public static void main(String[] args) throws IOException {
public static void main(String[] args){
String pathToFile = args[0]; // "/home/user/file.txt"

String s = readFile(pathToFile);
System.out.println(s);
try {
String s = readFile(pathToFile);
System.out.println(s);
} catch (FileNotFoundException e) {
System.out.printf("файл \"%s\" не найден\n", pathToFile);
} catch (IOException e) {
System.out.printf("произошла ошибка при чтении файла \"%s\"\n", pathToFile);
}

}

public static String readFile(String pathToFile) throws IOException {
Expand Down
14 changes: 9 additions & 5 deletions task06/src/com/example/task06/Task06Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@

public class Task06Main {
public static void main(String[] args) {
//здесь вы можете вручную протестировать ваше решение, вызывая реализуемый метод и смотря результат
// например вот так:
/*

new Task06Main().printMethodName();
*/

}

void printMethodName() {
//todo напишите здесь свою корректную реализацию этого метода, вместо существующей
try{
throw new Exception("e");
}
catch(Exception e){
System.out.print(e.getStackTrace()[1].getMethodName());
}

}

}
12 changes: 8 additions & 4 deletions task07/src/com/example/task07/Task07Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ public static void main(String[] args) {
public Processor processor;

public String getExceptionType() {
//todo напишите здесь свою корректную реализацию этого метода, вместо существующей

try {
processor.process(); //todo вы можете заменить реализацию этого метода для ручного дебага
} catch (Exception e) {

}
return null;
catch (RuntimeException e) {
return UNCHECKED;
}
catch (Exception e) {
return CHECKED;
}
return NONE;
}

}