Machine Problem
Write a program to convert it to years, weeks and days the given day is 373 and display the result on the screen.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
You can buy my C++ book online at
https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/
You can buy my book in introduction to computer networking at
https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
/* days.ts
Jake Rodriguez Pomperada, MAED-IT, MIT
www.jakerpomperada.com and www.jakerpomperada.blogspot.com
jakerpomperada@gmail.com
July 18, 2022 2:51 PM Monday
Bacolod City, Negros Occidental
*/
var days = 373;
var given_days = days;
/* Conversion in this portion */
var years = days / 365;
var weeks =(days % 365) / 7
var days =(days % 365) % 7
console.log();
console.log("\tDisplay Results\n");
console.log("\tThe given days : " + given_days);
console.log();
console.log("\tNumber of Years : " + Math.floor(years));
console.log("\tNumber of Weeks : " + Math.floor(weeks));
console.log("\tNumber of Days : " + Math.floor(days) + "\n");
console.log("\tEnd of Program\n");
No comments:
Post a Comment