Wednesday, October 23, 2019

Bigger Between Two Numbers in C++

I wrote this program that will ask the user to give two numbers and then the program will check which of the two number has a bigger value and display the results on the screen using 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.







Sample Program Output


Program Listing

bigger.cpp


// bigger.cpp
// Author : Jake Rodriguez Pomperada
// Date   : October 23, 2019

#include <iostream>

using namespace std;

int bigger(int a,int b);


int main()
{
int num1=0, num2=0;
cout <<"\n\n";
cout <<"\tBigger Between Two Numbers in C++";
cout <<"\n\n";
    cout<<"\tEnter first number :"; 
    cin>>num1;
    cout<<"\tEnter second number :"; 
    cin>>num2;
    cout <<"\n";
    bigger(num1,num2);
    cout <<"\n\n";
    cout <<"\tEnd of Program";
}


int bigger(int a, int b)
{
if(a>b)
    {
cout<<"\tFirst number "<<a<<" is the largest";
    }
    else if (b> a)
    {
cout<<"\tSecond number "<<b<<" is the largest";
    }
    
    if (a==b) {
    cout <<"\tBoth numbers as equal to one another.";
}
}


OutsourceAtMe.com Digital Marketing Agency

OutsourceAtMe.com Digital Marketing Agency offers the following:


  • Web Analytics
  • Social Media Marketing Domain Registration
  • Database Management Consultancy
OutsourceAtMe was created to help and support clients either individual or company to improve their business. We have a pool of professionals that are dedicated, well trained and specialize in providing the highest quality of work. Our team guarantees that we will deliver the efficient quality of work to exceed our client expectations on a cost-effective way.



Contact us

Bacolod City, Philippines. Phone: +63-927-7358-239 E-mail:
sales@outsourceatme.com support@outsourceatme.com

Addition of Two Numbers in Java

Addition of Two Numbers in Java

I write a program using Java as my programming language that will ask the user to give two numbers and then the program will compute the sum of two numbers 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 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.




Sample Program Output



Program Listing

addition.java

/**
 * 
 */
package addition;

/**
 * @author Jacob
 *
 */

import java.util.Scanner;

public class addition {

/**
* @param args
*/
public static void main(String[] args) {
Scanner inputs = new Scanner(System.in);
System.out.print("\n\n");
System.out.print("\tAddition of Two Numbers");
System.out.print("\n\n");
System.out.print("\tGive First Value : ");
int a = inputs.nextInt();
System.out.print("\tGive Second Value : ");
int b = inputs.nextInt();
int sum = (a+b);
System.out.print("\n");
System.out.print("\tThe sum of " + a + " and "
   + b + " is " + sum +".");
System.out.print("\n\n");
System.out.print("\tEnd of Program");
}

}

Multiplication Table in Java

Multiplication Table in Java

I wrote a simple multiplication table program that uses nested for loop statement in Java as my 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output

Program Listing

 multiplication_table.java

// Multiplication Table in Java
// Author : Jake Rodriguez Pomperada
// October 23, 2019   Wednesday 

package multiplication_table_demo;

public class multiplication_table {

public static void main(String[] args) {
   System.out.println("\n");
   System.out.println("\t\tMULTIPLICATION TABLE");
   System.out.println("\n");
    for (int a=1; a<=12; a++) {
    for (int b=1; b<=12; b++) {
    System.out.printf("%4d",(a*b));
    }
    System.out.println();
    }
}

}

Hello World in Java

Hello World Program in Java

I wrote a program in Java to display a hello world message on the screen. I am using Eclipse IDE as my text editor.

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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.




Sample Program Output

Program Listing

Hello_World.java

/**
 * 
 */
package hello_world_display;

/**
 * @author Jake Rodriguez Pomperada
 *
 */
public class Hello_World {

/**
* @param args
*/
public static void main(String[] args) {
        System.out.println();
        System.out.print("\tHello World.");
        System.out.println("\n");
        System.out.print("\tWelcome To Java Programming");
        System.out.println("\n");
        System.out.print("\tEnd of Program");
}

}


Tuesday, October 22, 2019

Fahrenheit To Celsius in PHP

Fahrenheit To Celsius in PHP

I wrote a program that will ask the user temperature in Fahrenheit and then it will convert into Celsius temperature equivalent in PHP as my 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

index.php

<!DOCTYPE html>
<html>
<head>
 <title> Fahrenheit To Celsius in PHP </title>
</head>
 <style>
     body {
      font-family: arial;
      font-size:12;
     }  
 </style>
 <body>
   <?php
     error_reporting(0);
     $fahrenheit = $_POST['fahrenheit'];
     $celsius = $_POST['celsius'];

  if (isset($_POST['convert'])){
  $f = $_POST['fahrenheit'];
  $c = ($f-32) * 5/9;
  $display = round($c,2)."". " Degree's Celsius";
  }

  
  if (isset($_POST['clear'])) {
  $fahrenheit = "";
  $celsius = "";
  } 

  ?>

  <h3>Fahrenheit To Celsius in PHP </h3>
  <table>
  <form name="temperature" method="post">
  <tr>
  <td>Temperature in Fahrenheit</td>
  <td><input type="text" name="fahrenheit" value="<?php echo $fahrenheit; ?>"
      required autofocus> </td>
      </tr>
      <tr>
      <tr><td>The Temperature in Celsius is </td>
      <td><input type="text" name="celsius:" value="<?php echo $display;?>"</td></tr>
      <tr></tr></tr>
      <tr>
      <td><input type="submit" value="Convert" name="convert"/>
      &nbsp;&nbsp;&nbsp;
      <input type="submit" value="Clear" name="clear" /></td>
     </tr>
  </form>
     </table>
    </body>
</html>



Factorial of a Number in PHP

Factorial of a Number in PHP

I wrote a program that will ask the user to give a number and then the program will compute the factorial value of the given number using PHP as my 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


]
Sample Program Output


Program Listing

index.php

<!DOCTYPE html>
<html>
<head>
 <title>Factorial of a Number in PHP</title>
</head>
<body>
  <style>
    body {
    font-family: arial;
    font-size:14;
    } 
</style>
<h2>Factorial of a Number in PHP </h2>
<table>
<form name="factorial" method="post">
<tr>
<td>Enter a Number : </td>
<td><input type="text" name="num" required autofocus></td>
</tr>
<tr>
<tr></tr>
<tr></tr>
<td><input type="submit" value="Check" name="submit" /> </td>
</tr>
</form>
</table><br>
<?php

 if (isset($_POST['num']))
 {
  $num=$_POST['num'];
  $fact=1;

  for ($i=$num; $i>=1; $i--)
  {
  $fact = $fact * $i;
  }

  echo "The Factorial Value of $num is $fact.";
 }
 ?>
</body>
</html>


Monday, October 21, 2019

Current Date in C language


A simple program in C language to return the current date from your computer.

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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

//PRINT DATE
#include<stdio.h>
#include<conio.h>
#include<dos.h>
int main()
{
struct date d;
getdate(&d);
printf("Current system date is:%d/%d/%d",d.da_mon,d.da_day,d.da_year);
getch();
return 0;
}

Get IP Address in C

A simple program in C language to get the IP Address of the computer.

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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

//GET IP ADDRESS
#include<stdlib.h>
int main()
{
system("C:\\Windows\\System32\\ipconfig");
return 0;
}

Sunday, October 20, 2019

Data Privacy Rights - NONESCOST

Sum of Three Numbers in PHP

Sum of Three Numbers in PHP

A simple program that I wrote using PHP to sum the values of three numbers 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 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

index.php

<?php

  $a = 2;
  $b = 3;
  $c = 4;

  $sum = ($a+$b+$c);


  echo "<p> The sum of $a, $b and $c is $sum. </p>";

?>






Product of Two Numbers in PHP

Product of Two Numbers in PHP

I simple program that I wrote using PHP to compute the product of two numbers and display the result 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 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

index.php

<?php

$a = 5;
$b = 10;

$product = ($a * $b);

echo "<h1> The product of $a and $b is $product.";

?>




Hello World in PHP