Здравствуйте нужен человек, который разбирается в такой программе как Access.
Ответы на вопрос:
для в допустим, что слева направо.
class birthdate{
private int day;
private int month;
private int year;
birthdate(int day, int month, int year){
this.day = day;
this.month = month;
this.year = year;
}
public int getday() {
return day;
}
public void setday(int day) {
this.day = day;
}
public int getmonth() {
return month;
}
public void setmonth(int month) {
this.month = month;
}
public int getyear() {
return year;
}
public void setyear(int year) {
this.year = year;
}
public boolean isolder(birthdate bd) {
return this.year > = bd.getyear() & & this.month > = bd.getmonth() & & this.day > bd.getday();
}
}
class human{
private birthdate birthdate;
private string name;
human(string name, birthdate birthdate){
this.birthdate = birthdate;
this.name = name;
}
public birthdate getbirthdate(){
return this.birthdate;
}
public void setbirthdate(birthdate bd) {
this.birthdate = bd;
}
public string getname(){
return this.name;
}
public void setname(string name) {
this.name = name;
}
}
public class task {
private static boolean issumnumbertwodecimal(int number) {
int sum = 0;
while(true) {
sum += number % 10;
number /= 10;
if(number < 1) {
break;
}
}
return sum < 100;
}
private static string whichseason(int month) {
if(month > = 1 & & month < = 2 & & month == 12) {
return "winter";
} else if(month > = 3 & & month < = 5) {
return "spring";
} else if(month > = 6 & & month < = 8) {
return "summer";
} else if(month > = 9 & & month < = 11){
return "autumn";
} else {
return "there's no such month";
}
}
private static boolean issamefirstandsecond(int number, int numeral){
string snbr = string.valueof(number).substring(0, 2);
return integer.valueof(snbr) == numeral;
}
private static boolean isolder(human h1, human h2) {
return h1.(h2.;
}
public static void main(string[] args) {
int number = 2939393;
system.out.println(issumnumbertwodecimal(number));
//month and date has correct values
int month = 10;
human vasya = new human("vasya", new birthdate(1, month, 1990));
human natalia = new human("natalia", new birthdate(1, month, 1989));
system.out.println(isolder(vasya, natalia));
system.out.println(whichseason(month));
system.out.println(issamefirstandsecond(number, 29));
}
}
Реши свою проблему, спроси otvet5GPT
-
Быстро
Мгновенный ответ на твой вопрос -
Точно
Бот обладает знаниями во всех сферах -
Бесплатно
Задай вопрос и получи ответ бесплатно
Популярно: Информатика
-
Irakli200718.12.2020 11:33
-
lesa1814.12.2020 01:15
-
Largo200013.04.2023 15:56
-
Stultus19.03.2022 12:40
-
lНанамиТянl10.02.2022 14:53
-
SpiritAlice12.06.2022 13:39
-
L4i6za02.09.2020 12:31
-
Илья28138205.04.2020 20:31
-
SofiaShpakivska23.02.2023 16:31
-
dani2d16.12.2021 18:17
Есть вопросы?
-
Как otvet5GPT работает?
otvet5GPT использует большую языковую модель вместе с базой данных GPT для обеспечения высококачественных образовательных результатов. otvet5GPT действует как доступный академический ресурс вне класса. -
Сколько это стоит?
Проект находиться на стадии тестирования и все услуги бесплатны. -
Могу ли я использовать otvet5GPT в школе?
Конечно! Нейросеть может помочь вам делать конспекты лекций, придумывать идеи в классе и многое другое! -
В чем отличия от ChatGPT?
otvet5GPT черпает академические источники из собственной базы данных и предназначен специально для студентов. otvet5GPT также адаптируется к вашему стилю письма, предоставляя ряд образовательных инструментов, предназначенных для улучшения обучения.