This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package azamat.lab3; | |
| import java.util.Arrays; | |
| public class Student { | |
| /** Тут содержится ФИО ученика */ | |
| private String FIO; | |
| /** Тут содержится сумма баллов за 1ый экзамен */ | |
| private int ekz1; | |
| /** Тут содержится сумма баллов за 2ой экзамен */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package azamat.lab3; | |
| import java.util.Arrays; | |
| public class Student { | |
| private String FIO; | |
| private int ekz1; | |
| private int ekz2; | |
| private int ekz3; | |
| private int id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package labs3; | |
| import java.time.LocalDate; | |
| import java.util.Scanner; | |
| /** | |
| * @version 1.0 | |
| * @author Maxim_Maxim | |
| */ | |
| class Candidate { |