Machine Problem
Write a program that will compute the area of the triangle with the base value 4 and height value of 6 and display the results 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.
/* triangle.ts Jake Rodriguez Pomperada, MAED-IT, MIT www.jakerpomperada.com and www.jakerpomperada.blogspot.com jakerpomperada@gmail.com July 18, 2022 10:23 PM Monday Bacolod City, Negros Occidental */ const baseValue = 4 const heightValue = 6; // calculate the area of the triangle const areaValue = (baseValue * heightValue) / 2; console.log(); console.log("Area of the Triangle in TypeScript\n"); console.log("Base Value : " + baseValue + "\n"); console.log("Height Value : " + heightValue + "\n"); console.log("The area of the triangle : " + areaValue + "\n"); console.log("End of Program\n");
No comments:
Post a Comment