This is to discuss how to use Manleo Probes and Tool setters
Get the Conversation Started
What kind of post do you want to create?
Discuss Anything related to 3D Datum finders, Edge finders and Tool setters
bottom of page
//t the user for the required inputs
var costOfProbe = parseFloat(prompt("Enter the cost of the probe:"));
var costSavingsPerHour = parseFloat(prompt("Enter the cost savings per hour:"));
var hoursSavedPerWeek = parseFloat(prompt("Enter the number of hours saved per week:"));
var weeksPerYear = parseFloat(prompt("Enter the number of weeks the machine is in use per year:"));
// Calculate the ROI
var annualCostSavings = costSavingsPerHour * hoursSavedPerWeek * weeksPerYear;
var roi = (annualCostSavings / costOfProbe) * 100;
// Display the results
document.write("By using a probe, you can save $" + annualCostSavings + " per year.");
document.write("Your ROI for purchasing the probe is " + roi + "%.");