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, February 5, 2022
Display 1 To 20 Using For Loop in C++
A simple program to display a series of numbers from 1 to 20 using for loop statement in C++.
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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
#include <iostream>
#include <iomanip>
int main()
{
std::cout <<"\n\n";
std::cout <<"\tDisplay 1 To 20 Using For Loop in C++";
std::cout <<"\n\n";
for (int a=1; a<=20; a++) {
std::cout << std::setw(4) << a;
}
std::cout <<"\n\n";
}
Friday, February 4, 2022
Factors of a Number Using For Loop in Java
Write a Java program to Find Factors of a Number using For loop 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
factors.java
/* Write a Java program to Find Factors of a Number using For loop */
import java.util.Scanner;
public class factors {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int x=0, i=0;
char ch;
do {
System.out.println();
System.out.print("\tFactors of a Number Using For Loop in Java");
System.out.println("\n");
System.out.print("\tGive a Positive Number : ");
x = input.nextInt();
System.out.println();
System.out.print("\tThe factors of the " + x + " are: ");
for (i = 1; i <= x; ++i) {
if (x % i == 0) {
System.out.print(i + " ");
}
++i;
}
System.out.print("\n\n");
System.out.print("\tDo you want to continue (Type y or n) : ");
ch = input.next().charAt(0);
} while (ch == 'Y'|| ch == 'y');
System.out.println("\n");
System.out.print("\tTHANK YOU FOR USING THIS PROGRAM");
System.out.println("\n\n");
input.close();
}
}
Days Into Years, Weeks, and Days in Java
A Java program to ask the users number of days and then it will convert into years, weeks, and days 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
days.java
import java.util.Scanner;
public class days {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
char ch;
do {
System.out.println();
System.out.print("\tDays Into Years, Weeks, and Days in Java ");
System.out.println("\n");
System.out.print("\tHow many days? ");
int days = input.nextInt();
int years=0;
int weeks=0;
/* Conversion of days in to years, weeks and days */
years = (days / 365);
weeks = (days % 365) / 7;
days = days - ((years * 365) + (weeks));
System.out.println("\n");
System.out.println("\t" + years + " Year, " + weeks + " Weeks, and " + days+ " Days\n");
System.out.print("\n");
System.out.print("\tDo you want to continue (Type y or n) : ");
ch = input.next().charAt(0);
} while (ch == 'Y'|| ch == 'y');
System.out.println();
System.out.print("\t THANK YOU FOR USING THIS PROGRAM");
System.out.println("\n\n");
input.close();
}
}
Thursday, February 3, 2022
String Declaration in PHP
A simple program to demonstrate how to declare string 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
string.php
<?php
$name ="Julianna Rae Pomperada";
$school = "University of ";
$school .= "Saint ";
$school .= "La Salle";
echo $name;
echo "<br><br>";
echo $school;
?>
Wednesday, February 2, 2022
Age in Years To Days in C++
A simple program that will ask the user to give age and then it will compute the age in days 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
age.cpp
#include <iostream>
#include <conio.h>
int main()
{
int years=0, days=0;
std::cout <<"\n\n";
std::cout <<"\tAge in Years To Days in C++";
std::cout <<"\n\n";
std::cout<<"\tEnter Your Age in Years : ";
std::cin>>years;
//calculate days
days = years * 365;
std::cout <<"\n\n";
std::cout<<"\tYour age in days will be : "<<days;
std::cout <<"\n\n";
std::cout <<"\tEnd of Program";
std::cout <<"\n\n";
getch();
}
Print 1 To 10 Using For Loop in C++
A simple program to print a series of numbers from 1 to 10 using for loop statement 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 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
#include <iostream>
int main(){
std::cout <<"\n\n";
std::cout <<"\tPrint 1 To 10 Using For Loop in C++";
std::cout <<"\n\n";
std::cout <<"\t";
for (int a=1; a<=10; a++) {
std::cout <<" " << a << " ";
}
std::cout <<"\n\n";
std::cout <<"\tEnd of The Progran";
std::cout <<"\n\n";
}
Tuesday, February 1, 2022
String Arrays in C++
A simple program to demonstrate string arrays 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
#include <iostream> #include <string> int main() { std::string persons_name[4] = {"Jake", "Junallie", "Jacob Samuel", "Julianna Rae"}; std::cout <<"\n\n"; std::cout << "\tString Arrays in C++"; std::cout <<"\n\n"; for (int a=0; a<4; a++) { std::cout <<"\t" <<persons_name[a] <<"\n"; } return 0; }
Monday, January 31, 2022
Print 1 To 100 Using While Loop in Java
A simple program to print 1 to 100 using a while loop statement 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
public class Print_1_to_100 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i=1;
System.out.println();
System.out.println("\tPrint 1 To 100 Using While Loop in Java");
System.out.println();
//loop to print 1 to 100.
while(i<=100)
{
System.out.print(" " + i + " ");
i++;
}
}
}
Print 1 To 10 Using Do While Loop in Java
A program to print numbers from 1 to 10 using do-while loop statement 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 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
Thank you very much for your support.
Program Listing
public class Print_1_To_10 { public static void main(String[] args) { // TODO Auto-generated method stub int i=1; System.out.println(); System.out.println("\tPrint 1 To 10 Using Do While Loop in Java"); System.out.println(); System.out.print("\t"); //loop to print 1 to 100. do { System.out.print(" " + i + " "); i++; }while(i<=10); } }