Thursday, January 12, 2023

Meters To Feet in Java

 A program that will ask the user to give length in meters and then convert it into feet equivalent in Java programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); double meters; double feet; System.out.println(); System.out.println("\tMeters To Feet in Java\n"); System.out.print("\tGive Meters Value : "); meters = input.nextDouble(); feet = meters * 3.2808399; System.out.println(); System.out.printf("\t%5.2f Meter(s) is equal to %5.2f Feet(s).\n",meters,feet); System.out.println(); System.out.println("\tEnd of Program"); System.out.println(); input.close(); } }

Wednesday, January 11, 2023

Meter To Feet in C

Meter To Feet in C

 A program that will ask the user to give meter value and then it will convert into feet equivalent using C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

#include <stdio.h> #include <stdlib.h> int main() { float m=0.00,f=0.00; printf("\n\n"); printf("\tMeter To Feet in C\n\n"); printf("\tEnter Meter Value : "); scanf("%f",&m); f = 3.2808399 * m; printf("\n\n"); printf("\tThe given %5.2f Meter(s) is equal to %5.2f Feet(s).",m,f); printf("\n\n"); printf("\tEnd of Program\n\n"); system("pause"); }

Tuesday, January 10, 2023

Addition of Three Numbers Using Function in JavaScript

Addition of Three Numbers Using Function in JavaScript

 A program that will compute the sum of three numbers using a function in JavaScript programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

<html>

 

    <head>

 

            <title>Addition of Three Numbers Using Function in JavaScript</title>

 

            <Script type="text/javascript">

 

            function sum_three(a,b,c) {

            return(a+b+c);

            }

 

              

             var result=sum_three(1,2,3);

 

  document.write("<h2>Addition of Three Numbers Using Function in JavaScript</h2>");

             document.write("<h3>The total sum is " + result +"</h3>.");

 

             </Script>

 

             </head>

 

</html>

Square a Number in JavaScript

Square a Number in JavaScript

 A simple program to ask the user to give a number and then program will convert the given number into its square a number using JavaScript programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

<html> <head> <title>Square a Number in JavaScript </title> <Script type="text/javascript"> var num_val=parseInt(prompt("Enter Number:")); var square; var square=num_val*num_val; document.write("<h1>Square a Number in JavaScript </h1><br>"); document.write("The given number " + num_val + ".<br>"); document.write("Square of the given number is " + square +"."); </Script> </head> </html>

Cube a Number in JavaScript

Cube a Number in JavaScript

 A simple program to ask the user to give a number and then program will convert the given number into its cube a number using JavaScript programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

<html>

 

    <head>

 

              <title> Cube a Number in JavaScript </title>

 

            <Script type="text/javascript">

 

             var num_val=parseInt(prompt("Enter Number:"));

 

             var cube;

 

             var cube=num_val*num_val*num_val;

 

  document.write("<h1>Cube a Number in JavaScript </h1><br>");

             document.write("The given number " + num_val + "<br>");

             document.write("Cube of the given numbers is " + cube);

 

             </Script>

 

             </head>

 

</html>

Monday, January 9, 2023

Current Solver in TypeScript

Current Solver in TypeScript

 Machine Problem

Write a program that uses Ohm's law to find the current of the circuit with given resistance 10 ohms and the voltage of 120 volts and display the results on the screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

/* current.ts Jake Rodriguez Pomperada, MAED-IT, MIT www.jakerpomperada.com and www.jakerpomperada.blogspot.com jakerpomperada@gmail.com July 19, 2022 5:09 PM Tuesday Bacolod City, Negros Occidental */ var voltage = 120; var resistance = 10; // Solving for current in the circuit var current = voltage/resistance; // Two decimal places current = Math.floor(current*100)/100; console.log(); console.log("Current Solver in TypeScript\n"); console.log("Given Voltage : " + voltage + " volt(s)"); console.log("Given Resistance : " + current + " ohm(s)\n"); console.log("The Current : " + resistance + " ampere(s)\n"); console.log("End of Program\n");

Sunday, January 8, 2023

Cube Root A Number in C#

Cube Root a Number in C#

 A simple program to show how to convert a number into its cube root equivalent in C# programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

using System; class CubeRoot { static void Main(string[] args) { double x = 64; double result = Math.Cbrt(x); Console.WriteLine("The Cube Root of " + x + " is " + result); } }

Find the Cube of a Number in C

Find the Cube of a Number in C

 A simple program that I wrote that will ask the user to give a number and then the program will compute the cube value of the given value using C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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

#include <stdio.h> int main(){ int num_given=0, cube=0; printf("\n\n"); printf("\tFind the Cube of a Number in C\n\n"); printf("\tGive a Number : "); scanf("%d", &num_given); cube = num_given * num_given * num_given; printf("\n\n"); printf("\tThe Cube of %d is %d.\n\n", num_given, cube); printf("\tEnd of Program\n\n"); system("pause"); return 0; }