Thursday, January 26, 2023

Hello World Without Semicolon in C++

Hello World Without Semicolon in C++

 A program to display hello world on the screen without using semicolon 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>

using namespace std;


 int main()    

{    

 if(cout << "Hello World in C++ Without Semicolon")

 {

     

 }    

return 0;  

}   


Wednesday, January 25, 2023

Area of the Circle Using Rust

Area of the Circle Using Rust

 

Machine Problem

Write a program to ask the user to give radius value of a circle and then the program will compute the area of the circle and display the results on the screen using Rust 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

// area.rs

use std::io;


fn main() {
   
    let  radius:f32;
    let  area:f32;
   
    let mut input = String::new();
   
    println!();
    println!("Area of a Circle Using Rust\n");

    println!("Give Radius Value: ");
    io::stdin().read_line(&mut input).expect("Not a valid string");

    radius = input.trim().parse().expect("Not a valid number");

    //Caculate the area of circle
     area = 3.14 * radius * radius;
 
    println!();
    println!("The area of the circle is {:.2}.",area);
    println!();
    println!("End of Program");
    println!();
   
}

Last Occurrence of Character in C++

Tuesday, January 24, 2023

Inches To Centimeter Using Function in Python

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.");

}