Sunday, October 6, 2019

Basic Arithmetic Operations in C++

In this article I will share you guys a sample program that I created using C++ that will ask the user to give two numbers and then the program will perform basic arithmetic operations such as addition, subtraction, multiplication and division. The code is very simple and easy to understand.

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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.



Sample Program Output


Program Listing

basic_math.cpp

#include <iostream>

using namespace std;


int main() {
int a=0,b=0, sum=0, difference=0;
int product=0, quotient=0;
cout <<"\n\n";
cout << "\tBasic Arithmetic Operations in C++";
cout <<"\n\n";
cout << "\tEnter two numbers :";
cin >> a >> b;
sum = (a+b);
difference = (a-b);
product = (a*b);
quotient= (a/b);
cout <<"\n";
cout << "\tThe sum of " << a << " and "
      << b << " is " << sum << ".\n";
      
cout << "\tThe difference of " << a << " and "
      << b << " is " << difference << ".\n";
cout << "\tThe product of " << a << " and "
      << b << " is " << product << ".\n";
cout << "\tThe quotient of " << a << " and "
      << b << " is " << quotient << ".\n";
cout <<"\n";
cout <<"\tEnd of the Program";
}



Basic Arithmetic Operations in C++

Friday, October 4, 2019

Odd and Even Number Checker in C Using Pointers

Write a program that will ask the user to give a number and then the program check if the given number is an odd or even number using pointers and display the result on the screen 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.

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

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


My personal website is http://www.jakerpomperada.com.




Sample Program Output


Program Listing


/* odd_even.c
   Author   : Jake Rodriguez Pomperada,BSCS,MAED-IT
   Date     : November 26, 2018  Monday  9:07 AM
   Location : Bacolod City, Negros Occidental
   Tool     : Dev C++ Version 5.11
   Website  : http://www.jakerpomperada.com
   Email    : jakerpomperada@jakerpomperada.com and jakerpomperada@gmail.com
*/
#include<stdio.h>
int main()
{
   int num=0;
   int *ptr;
   printf("\n\n");
   printf("\tOdd and Even Number Checker");
   printf("\n\n");
   printf("\tEnter a Number : ");
   scanf("%d",&num);
   ptr = &num; 
  if (*ptr%2==0) {
       printf("\n");
         printf("\tThe given number %d is an EVEN number.",num);
     }
    else {
    printf("\n");
     printf("\tThe given number %d is an ODD number.",num);
   }
  printf("\n\n");
  printf("\tEND OF PROGRAM");
  printf("\n\n");
}

Decimal To Binary Converter in C

A simple program that I wrote to ask the user to give the decimal number and then it will convert into binary value 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.

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

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


My personal website is http://www.jakerpomperada.com.


Sample Program Output


Program Listing

#include<stdio.h>
#include<conio.h>

int main()
{
long int d;
int i=0,a[25],j;
printf("\tDecimal To Binary Number Converter");
printf("\n\n");
printf("Enter the Decimal No.:");
scanf("%d",&d);
while(d>0)
{
a[i]=d%2;
d=d/2;
i++;
}
printf("Binary Number Equivalent : ");
for (j=i-1;j>=0;j--)
printf("%d",a[j]);
getch();
}

Basic example of toggleClass using JQuery Framework

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol. He created this program to Basic example of toggleClass using Jquery.


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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.



It will Change Text Button and image size after clicking the button 


Program Listing


$('#pokeme').click(function () {
$(this).toggleClass('poked');

if ($(this).hasClass('poked')) {
$(this).text('Poke Me Again');
$('.img-wrapper img').css('height', '400px');
} else {
$(this).text('Poke Me');
$('.img-wrapper img').css('height', 'unset');
}
});



Loop and Count Navigation Menu in JQuery Framework

Here is a sample program that is being provided by my close friend, business partner, and fellow software engineer Sir Larry Dave Emol. He created this program to Loop and Count Navigation Menu in Jquery.

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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.



Sample Program Output


Program Listing


$(document).ready(function(){
var numbr_li;
$('#navbar-menus ul').each(function(){

$('li').each(function(){
numbr_li = $(this).index()+1;
});
console.log(numbr_li);
$('.numcount').text(numbr_li);
});
});




Display Picture on Change Event Using JQuery

Here is a sample program that is being provided by my close friend, business partner, and fellow software engineer Sir Larry Dave Emol. He created this program to Display Picture on change event using Jquery.


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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.



Sample Program Output


Program Listing


$('#addpic').on('change', function () {
addProf(this);
console.log('change');
});


function addProf(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();

reader.onload = function (e) {
$('#imgpic').attr('src', e.target.result);
$('#imgpic').show();
};
reader.readAsDataURL(input.files[0]);
}
}






Product of Two Numbers Using Batch File in DOS

A simple script that I wrote using DOS Batch File to ask the user two numbers and the program will compute the product 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.





Sample Program Output


Program Listing

product.bat

@ECHO OFF
echo.
echo PRODUCT OF TWO NUMBERS USING BATCH IN DOS
ECHO.
echo. CREATED BY MR. JAKE R. POMPERADA
echo.
ECHO Enter First Value:
SET /P a=
ECHO Enter Second Value:
SET /P b=

ECHO.
SET /A Ans=%a%*%b%
ECHO The product of %a% and %b% is %Ans%.
ECHO.
ECHO Press any key to exit.
PAUSE>NUL




Print Numbers From 1 To 100 Using For Loop Statement in C++

A simple program that I wrote using a C++ programming language that will print a series of numbers from 1 to 100 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.


Sample Program Output


Program Listing

for.cpp

// print100.cpp
// Author : Jake Rodriguez Pomperada
// Date   : October 4, 2019
// Location : Bacolod City, Negros Occidental Philippines

#include <iostream>

using namespace std;


int main() {
cout << "\n\n";
cout <<"\tPrint Numbers from 1 to 100 Using For Statement";
cout << "\n\n";
for (int a=1; a<=100; a++) {
cout <<" "<< a << " ";
}
cout << "\n\n";
cout <<"\tEnd of Program";
}



Print Numbers from 1 to 100 Using For Statement

Year Level Checker Using Switch Statement in C++

A simple program that I wrote using a switch statement to check if the given year level of the students belongs to freshmen, sophomore, juniors, seniors and invalid year level if the given year level does not belong to the group of values 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.







Sample Program Output


Program Listing

switch_example.cpp

#include <iostream>

using namespace std;


int main() {
int year_level=0;
cout << "\tYear Level Checker Using Switch Statement in C++";
cout << "\n\n";
cout << "\tWhat is your year level? :";
cin >> year_level;
cout << "\n\n";
switch(year_level) {
case 1 : cout <<"\tYou belong to Freshmen.";
         break;
case 2 : cout <<"\tYou belong to Sophomore.";
         break;
case 3 : cout <<"\tYou belong to Juniors.";
         break;
case 4 : cout <<"\tYou belong to Seniors.";
         break;
default  : cout << "\tInvalid Year Level. Try Again";         
}
cout <<"\n\n";
cout <<"\tEnd of Program";
return 0;
}





Year Level of the Student Checker Using Switch Statement in C++

Thursday, October 3, 2019

Increment And Decrement in C

A simple program that I wrote using the C programming language to demonstrate how to use increment and decrement operators.

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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.


Program Listing


#include <stdio.h>

int main() {
     
    int a=0,b=0;

a=9;
b = a++ + 5;  /* a=10  b=14 */
printf("\n");
  printf("\tConditional ternary operator ( ? )");
  printf("\n\n");
printf("The result is of a = %d and b = %d",a,b);
printf("\n\n");
a = 3;
b = ++a + 6; /* a = 4 b = 10 */
printf("\n\n");
printf("The result is of a = %d and b = %d",a,b);
printf("\n\n");
    printf("\tEnd of Program");
    printf("\n\n");
}

Add Class Navigational Menu Using JQuery

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol. He created this program Add class nav menu using JQuery.


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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.



Sample Program Output

Program Listing


$(document).ready(function() {
$('#navbar-menus ul li a').click(function() {
$('#navbar-menus ul li.current').removeClass('current');
$(this).closest('li').addClass('current');
});
});