Tuesday, January 24, 2023

Inch To Centimeter Using Function in Python

   A program that will ask the user to give length value in inches and then it will convert it into centimeter equivalent using function in Python 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


def inch_to_cm(inch):

    return inch * 2.54


print()

print("Inches To Centimeter Using Function in Python\n");


inch_value = float(input('Give value in inches : '))


print()

print('{} Inches is equal to {} Centimeters'.format(inch_value,  inch_to_cm(inch_value )))

Inches To Centimeters in Python

Inches To Centimeter in Python

  A program that will ask the user to give length value in inches and then it will convert it into centimeter equivalent using Python 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


print()

print("Inches To Centimeter in Python\n");


inch_value = float(input('Give value in inches : '))

cm_value =  inch_value * 2.54 


print()

print('{} Inches is equal to {} Centimeters'.format(inch_value, cm_value))

Monday, January 23, 2023

Inches To Centimeter in C

Inches To Centimeter in C

 A program that will ask the user to give length value in inches and then it will convert it into centimeter 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>


int main()

{

    float inch=0.00, cm=0.00;

    

    printf("\n\n");

    printf("\tInches To Centimeter in C\n\n");

    printf("\tGive Length in Inch: ");

    scanf("%f", &inch);

    

    // Conversion here

    cm = inch * 2.54;

    

    printf("\n\n");

    printf("\tThe equivalent length in Centimeters is %5.2f cm.", cm);

    printf("\n\n");

    printf("\tEnd of Program");

    printf("\n\n");

}

Sunday, January 22, 2023

Bill Solver in C

Bill Solver in C

  A program that will ask the user to give product price of an item and its quantity and then it will computer its bill 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()

{

double qty=0;


double price=0; double amount=0;

printf("\n\n");

printf("\tBill Solver in C");

printf("\n\n");

printf("\tEnter Price of Item : ");

    scanf("%lf",&price);

    printf("\n\n");

printf("\tEnter Quantity : ");

scanf("%lf",&qty);

// solving the bill here

amount = price * qty;

    printf("\n\n");

printf("\tBill = $ %5.2lf",amount);

    printf("\n\n");

    printf("\tEnd of Program");

printf("\n");


}

Bill Solver in C++

Bill Solver in C++

 A program that will ask the user to give product price of an item and its quantity and then it will computer its bill 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 <iostream>

#include <iomanip>


using namespace std;



int main()

{

int qty=0;

double price=0; double amount=0;

cout <<"\n\n";

cout << "\tBill Solver in C++";

cout <<"\n\n";

cout << "\tEnter Price of Item : ";

cin >> price;

cout << "\tEnter Quantity : ";

cin >> qty;

// solving the bill here

amount = price * qty;

cout <<"\n\n";

cout <<"\tBill = $ " << fixed << setprecision(2) << amount;

cout << "\n\n";

cout <<"\tEnd of Program";

cout <<"\n";


}

Bakit Sikat Ang Java Sa Mga Schools

Saturday, January 21, 2023

Grade Checker in JavaScript

Grade Checker in JavaScript

 A program to check if the given grade is passing or failing grade 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

// https://playcode.io/


let grade  = 74;


if (grade >=75) {

   console.log("Your grade is " + grade + " You Passed the Subject.");

} else {

   console.log("Your grade is " + grade + " You Failed the Subject.");

}

Square Root in JavaScript

Square Root in JavaScript

 A program that will convert the given number into its square root equivalent 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

let val_number = Math.sqrt(4);


console.log(val_number);

Friday, January 20, 2023

Square Root in C

Square Root in C

 A program to convert the given number into its square root value 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



#include <stdio.h>

#include <math.h>


int main() {

   

   double number, squareRoot;

    

    number = 9;

    

    

   squareRoot = sqrt(number);


   printf("Square root of %.2lf is %.2lf.", number, squareRoot);


 

    return 0;

}