Learn Computer Programming Free from our source codes in my website.
Sponsored Link Please Support
https://www.techseries.dev/a/27966/qWm8FwLb
https://www.techseries.dev/a/19181/qWm8FwLb
My Personal Website is http://www.jakerpomperada.com
Email me at jakerpomperada@gmail.com and jakerpomperada@yahoo.com
Saturday, January 15, 2022
Making an Executable File in Python
In this article, I will show you how to create an executable file in a 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 in 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.
Friday, January 14, 2022
Feet To Inches In PHP
A simple program to ask the user to give length in fee and convert it into inches using PHP 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 in 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.
Progam Listing
<?php
$value_in_inches = "";
if (isset($_POST["txtValueInFeet"])) {
$value_in_inches = (int)$_POST["txtValueInFeet"] * 12;
$value_in_inches = "<strong>". $_POST["txtValueInFeet"] ."</strong>".
" feet is equal to <strong>". $value_in_inches ."</strong> inches";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feet To Inches in PHP</title>
<style>
*,html {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #fefefe;
font-family: sans-serif;
background-color: #19BC9D;
}
.container {
background: #fff;
border: none;
text-align: center;
color: #fff;
width: 470px;
}
.title {
background-color: #14A083;
padding: 20px;
border: none;
}
.wrapper {
padding: 30px 20px;
font-size: 20px;
background-color: #fff;
border: none;
color: #14A083;
}
form {
margin-bottom: 20px;
}
h1 {
margin: 0 0 5px;
line-height: 1;
}
p {
margin: 15px 0 0;
}
input {
display: block;
width: 100%;
margin-bottom: 20px;
padding: 10px;
font-size: 15px;
text-align: center;
}
.output {
margin: 10px 0;
}
button {
background-color: #14A083;
color: #fff;
border: none;
border-radius: 2px;
text-align: center;
text-transform: uppercase;
text-decoration: none;
cursor: pointer;
font-size: 15px;
padding: 15px 10px;
width: 100%;
display: block;
margin: 20px 0 0;
}
</style>
</head>
<body>
<div class="container">
<div class="title">
<h1>Feet To Inches In PHP</h1>
<p>Created By:</p>
<h2>» Jake R. Pomperada, MAED-IT, MIT «</h2>
</div>
<div class="wrapper">
<form action="" method="post">
<label>Enter a number here</label>
<input type="number" name="txtValueInFeet" required>
<button type="submit" name="btnSubmit">Convert</button>
</form>
<?php echo $value_in_inches;?>
</div>
</div>
</body>
</html>
Wednesday, January 12, 2022
Present Date in C
A simple program that I wrote to display the present date using a 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 in 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.Program Listing#include <stdio.h> #include <time.h> /* Jake Rodriguez Pomperada, MAED-IT, MIT www.jakerpomperada.com and www.jakerpomperada.blogspot.com jakerpomperada@gmail.com */ const char *month_names[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; int main() { time_t now = time(NULL); struct tm *day = localtime(&now); printf("\n\n"); printf("\tPresent Date in C"); printf("\n\n"); printf("\tDate : %s\t%d, %d", month_names[day->tm_mon], day->tm_mday,day->tm_year+1900); printf("\n\n"); printf("\tEnd of Program"); printf("\n\n"); return 0; }
Tuesday, January 11, 2022
Current Date in C++
A program that will display the current date 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 in 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.Program Listing#include <iostream> #include <ctime> using std::string; int main() { time_t t = time(NULL); tm* timePtr = localtime(&t); std::cout <<"\n"; std::cout << "\tCurrent Date in C++\n"; std::cout <<"\n"; std::cout << "The Current Date : " <<(timePtr->tm_mday)<<"/"<< (timePtr->tm_mon)+1 <<"/"<< (timePtr->tm_year)+1900<<std::endl; return 0; }
Monday, January 10, 2022
Two Decimal Places in C
A simple program that demonstrates how to declare two decimal places using a 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 in 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.
Program Listing
#include <stdio.h>
int main() {
float temperature = 123.3567;
printf("\n");
printf("\tTwo Decimal Places in C");
printf("\n\n");
printf("\tThe temperature is %.2f degree's Celsius.",temperature);
printf("\n\n");
printf("\tEnd of Program");
printf("\n");
return 0;
}
Sunday, January 9, 2022
Feet To Inches in C++
A simple program to ask the user to give a value in feet and then the program will convert the given feet into inches equivalent using a 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 in 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.
Program Listing#include <iostream>
#include <iomanip>
using std::string;
int main() {
float feet=0.00, inches=0.00;
std::cout <<"\n";
std::cout <<"\tFeet To Inches in C++";
std::cout <<"\n\n";
std::cout <<"\tGive the number of feet : ";
std::cin >> feet;
std::cout <<"\n";
inches = feet * 12.0;
std::cout << std::fixed;
std::cout << std::setprecision(2);
std::cout <<"\t" << feet << " feet is equal to " << inches
<< " inches." <<"\n";
std::cout <<"\n";
std::cout <<"\tEnd of Program";
std::cout <<"\n";
return 0;
}
Feet To Inches in C
A simple program to ask the user to give a value in feet and then the program will convert the given feet into inches equivalent using a 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 in 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.
Program Listing
#include <stdio.h>
int main() {
float feet=0.00, inches=0.00;
printf("\n");
printf("\tFeet To Inches in C");
printf("\n\n");
printf("\tGive the number of feet : ");
scanf("%f", &feet);
printf("\n");
inches = feet * 12.0;
printf("\t%.2f feet is equal to %.2f inches\n", feet, inches);
printf("\n");
printf("\tEnd of Program");
printf("\n");
return 0;
}
Saturday, January 8, 2022
Multiplication Table in Java
Machine Problem
Write a program to generate a multiplication table using 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 in 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.
Present Month in Java
Machine Problem
Write a program that will display the present month using 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 in 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.
Solution
import java.time.*;
/**
* @version January 5, 2021
* @author Jake Rodriguez Pomperada, MAED-IT, MIT
*/
public class Calendar
{
public static void main(String[] args)
{
LocalDate date = LocalDate.now();
int month = date.getMonthValue();
int today = date.getDayOfMonth();
date = date.minusDays(today - 1); // set to start of month
DayOfWeek weekday = date.getDayOfWeek();
int value = weekday.getValue(); // 1 = Monday, . . . , 7 = Sunday
System.out.println("\n");
System.out.println("\tPresent Month in Java");
System.out.println("\n");
System.out.print("Month of January 2022");
System.out.println("\n");
System.out.println("Mon Tue Wed Thu Fri Sat Sun");
for (int i = 1; i < value; i++)
System.out.print(" ");
while (date.getMonthValue() == month)
{
System.out.printf("%3d", date.getDayOfMonth());
if (date.getDayOfMonth() == today)
System.out.print("*");
else
System.out.print(" ");
date = date.plusDays(1);
if (date.getDayOfWeek().getValue() == 1) System.out.println();
}
if (date.getDayOfWeek().getValue() != 1) System.out.println();
}
}
Input Your Name and Age in Java
Machine Problem
Write a program that shows basic input and output of user's name and age using
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 in 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.Program Listingimport java.util.*; public class Input_Name { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("\n"); System.out.println("\tInput Your Name and Age in Java"); System.out.println("\n"); // Input your name System.out.print("\tWhat is your name? "); String name = input.nextLine(); System.out.println("\n"); // Input your age System.out.print("\tHow old are you? "); int age = input.nextInt(); // display output on console System.out.println("\n"); System.out.println("\tHello, " + name + ". Next year, you'll be " + (age + 1) + "."); System.out.println(); System.out.println("\tEnd of Program"); System.out.println(); input.close(); } }