pechyclava
?>

Графическая форма представления информации, используется в каких случаях?

Информатика

Ответы

mirogall

Картинки, графики, схемы и т. д.

Объяснение:

dpodstrel85

Для В допустим, что слева направо.

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.getBirthDate().isOlder(h2.getBirthDate());

}

 

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));

}

}

vkorz594
Пишите нормальные значения не мб, а  мегабайты.
Для начала перевидем  I обьем(Дискета и CD диска) из мегабайт в байты.
Iд=1,44мбайт=1474.56кбайт=11'796.48байты
ICD=700мбайт=716'800кбайт=5'734'400байты
После этого делим Iд и ICD на Iобьем 1 страницы
Iд=11'794.48÷3000=3,93 округляем, получаем 3 страницы.
Хотя здесь вы бы сказали "Почему 3,а не 4"А вот почему, если вы бы округлили до 4 и умножили на 3000 для проверки, получилось бы 12000 байт, а это не верно потому что у Iд макс. 11'794.48.Поэтому у дискета уместится 3 страницы.
ICD=5'734'400÷3000=1911.46 округляем, получаем 1911 страниц.Поэтому у CD уместится 1911 страниц.
ответ:3 страницы текста уместится на дискету и 1911 страниц уместится на компакт-CD диск.
P.S: Знак (') я писал, чтобы легче было распознать число.

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Графическая форма представления информации, используется в каких случаях?
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

suxoruchenkovm171
Yelizaveta1848
jakushkinn
partners
kortikov77
oldprince840
atlantika7
utkinslava
innesagrosheva22
Ryazanova1575
fedotochkin8
victoria-112296363
Олег2014
Bi-1704
misterdre9991