Jump to content
  • 0

Math.round();


Yamaradg
 Share

Question

Здравствуйте!

Есть такой код:

01 function z (param1,param2,param3){

02

03 if (param1< 1001 && param1 > 0) {

04 var forTime = new Date();

05 var test = forTime.getTime() / (1000*60*60*24) + parseInt(param1);

06 var WeekDays = new Date(Math.round(test)*(24*60*60*1000));

07 //param1 = parseInt(Math.round(param1));

08 if (param1[param1.length-2] == 1 && param1> 99) {

09 param1 = param1+" дней ";

10 }

11 else if (param1[param1.length-1] == 1) {

12 param1 = param1+" день ";

13 }

14 else if (param1[param1.length-1] == 2 || param1[param1.length-1] == 3 || param1[param1.length-1] == 4) {

15 param1 = param1+" дня ";

16 }

17 else{

18 param1 = param1+" дней ";

19 }

20 alert("Через "+param1+"будет вот такая дата: "+"\n"+

21 "День недели: " + param2[WeekDays.getDay()]+"\n"+

22 "Число: " + WeekDays.getDate()+"-е"+"\n"+

23 "Месяц: " +param3[WeekDays.getMonth()]+"\n"+

24 "Год: " + WeekDays.getFullYear()+"-й"+"\n");

25 }

26 else{

27 alert("Ваши данные не соответствуют критериям ввода!"+"\n");

28 }

29 }

30

31

32 var answer = prompt("Введите число для определения будущей даты! \n (От 0 до 1000-чи...) ","Это будет: ")

33

34 var dayWeek = [" Воскресенье"," Понедельник"," Вторник"," Среда"," Четверг"," Пятница"," Суббота"];

35

36 var month = [" Январь"," Февраль"," Март"," Апрель"," Май"," Июнь"," Июль"," Август"," Сентябрь"," Октябрь"," Ноябрь"," Декабрь"]

37

38 z(answer,dayWeek,month);

Следующая строчка закоментирована поскольку при её активации не срабатывает условие связанное с изменением слова "день"!?

//param1 = Math.round(param1);

Вопрос:

Как округлить полученные при вводе данные до целых чисел, с учетом если пользователь введёт дробные?

(и что бы при этом окончания у слов "день" подвергались склонениям, как и ранее...)

P.S. В JS новичек! Поэтому прошу за код меня сильно не бить...

В заранее всем Очень Признателен за помощь!

Edited by Yamaradg
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy