Tuesday, October 8, 2019

Legal Age Checker Using Ternary Operator in C++

A simple program that I wrote that will ask the user to give user age and then the program will check if the given age is already an Adult or still a Minor 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.



Program Listing

// legal_age.cpp
// Author : Jake Rodriguez Pomperada, MAED-IT
// Date   : October 7, 2019  


#include <iostream>

using namespace std;

 int main() {
  int age=0;
  cout <<"\n\n";
  cout << "\tLegal Age Checker Using Ternary Operator in C++";
  cout <<"\n\n";
  cout << "\tEnter Your Age :";
  cin >> age;
  cout <<"\n";
 
  age >= 18 ?cout <<"\tYou are Adult":
         cout <<"\tYou are Minor";
 
  cout <<"\n\n";
  cout <<"\tEnd of Program";
 
 }


Ternary Operators in C++

Multiplication Table in C++

Hello World Program in C++

Factorial a Number in C++

Monday, October 7, 2019

Factorial Solver in C++

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

factorial.cpp

#include <iostream>

using namespace std;

int fact(int n) { 
   if ((n==0)||(n==1))
      return 1; 
   else
      return n*fact(n-1);
}
int main() {
   int n=0;
   cout <<"\n\n";
   cout <<"\tFactorial Solver in C++";
   cout <<"\n\n";
   cout <<"\tGive a Number : ";
   cin >> n;   
   cout <<"\n";
   cout<<"\tThe Factorial of "<<n<<" is "<<fact(n) <<".";
   cout <<"\n\n";
   cout <<"\tEnd of Program";
   return 0;
}


Sticky Bar HTML/CSS/JS

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol.

Sticky Bar HTML/CSS/JS name of this program.

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

window.onscroll = function() {
    mySticky()
};

function mySticky() {
    var navbar = document.getElementById("navigation");
    var sticky = navbar.offsetTop;

    if (window.pageYOffset >= sticky) {
    navbar.classList.add("sticky")
    } else {
    navbar.classList.remove("sticky");
    }
}






Get Checkbox Value 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.

Get Checkbox value in JQuery name of this program.


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() {
    $('#checkbox').change(function () {
        if ($('#checkbox').is(':checked')) {
            $('.cstatus').fadeIn();
            $('.cstatus').text('YES!')
            console.log(true)
        } else {
            $('.cstatus').fadeIn();
            $('.cstatus').text('NO!')
            console.log(false)
        }
    });
});




Add Toggle Attribute in JQuery

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol.

Add Toggle Attribute in JQuery name of this program.

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() {
$('#ctattr').click(function () {
$('#ctattr').toggleAttr('data-button', 'true', 'false');

});
});

// jquery toggle just the attribute value
$.fn.toggleAttr = function (attr, val1, val2) {
var test = $(this).attr(attr);
if (test === val1) {
$(this).attr(attr, val2);
return this;
}
if (test === val2) {
$(this).attr(attr, val1);
return this;
}
// default to val1 if neither
$(this).attr(attr, val1);
return this;
};




Drop Down option selected in JQuery

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol.

Dropdown option selected in jquery name of this program.

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() {
$('#color').on('change', function () {
if ($('#color option:selected').val() == 'Blue') {
$('.div-color-blue').fadeIn();
} else if ($('#color option:selected').val() == 'Red') {
$('.div-color-red').fadeIn();
} else if ($('#color option:selected').val() == 'Orange') {
$('.div-color-orange').fadeIn();
} else {
$('.div-color-blue').fadeOut();
$('.div-color-orange').fadeOut();
$('.div-color-red').fadeOut();
}
});
});






VB.NET CRUD and Microsoft SQL Server

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol.

VB.NET CRUD Backend SQL Server Database the name of this application.

Features :
Can add/update/delete/search info.
Can view info.

Back-end:
SQL Server Management Studio

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






Multiplication Table in C++ Using Setw Function

A simple multiplication table that I created using C++ as my programming language using Setw function using iomanip library file.

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

// multiplication_table.cpp
// Jake Rodriguez Pomperada,MAED-IT
// October 7, 2019 Monday

#include <iostream>
#include <iomanip>

using namespace std;

int main(){
int x=0,y=0;
     cout <<setw(34)<< "Multiplication Table";
cout <<"\n";
for (int x=1; x<=10; x++) {
cout <<"\n";
for (int y=1; y<=10; y++) {
cout << setw(4) << x*y;
}
}
}

Legal Age Checker Using Ternary Operator in C++

In this article, I would like to share with you guys a program that I wrote using a C++ programming language that will ask the user to give an age that will check if the age is already an Adult or Still a Minor.

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

legal_age.cpp

// legal_age.cpp
// Jake Rodriguez Pomperada,MAED-IT
// October 7, 2019 Monday

#include <iostream>

using namespace std;

int main()
{
int age=0;
cout <<"\n\n";
cout << "\tLegal Age Checker Using Ternary Operator in C++";
cout <<"\n\n";
cout <<"\tEnter Your Age : ";
cin >> age;
cout <<"\n";
age>=18 ? cout << "\tYou are already an Adult." :
      cout << "\tYou are still a Minor.";
cout <<"\n\n";
cout <<"\tEnd of Program";       
}




Sunday, October 6, 2019

Find the Maximum Value in Two Numbers Using Ternary Operator in C++

In this article I would like to share with you guys a sample program that I wrote using C++ that will ask the user to give two number and then the program which of the two numbers given by the user has a maximum numerical value using functions and ternary operator 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.

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

ternary.cpp

// ternary.cpp
// Jake Rodriguez Pomperada, MAED-IT
// October 7, 2019
// Sunday Bacolod City, Negros Occidental


#include <iostream>

using namespace std;

int findMaximum(int a, int b){
    //if a > b, it returns a, if not it returns b
    return (a > b) ? a : b;

int main()
  {
  int x=0,y=0;
  cout <<"\n\n";
  cout << "\tFind the Maximum Value in Two Numbers Using Ternary Operator in C++";
  cout <<"\n\n";
  cout << "\tGive Two Numbers : ";
  cin >> x >> y;
  cout <<"\n\n";
  cout << "\tThe maximum number between " << x << " and "
      << y << " is " << findMaximum(x,y) << ".";
  cout <<"\n\n";
cout << "\tEnd of Program";       
cout <<"\n\n";
  return 0;    
  }
  





Student Offense Information System Using Microsoft Visual Basic 6 and Microsoft Access

Here is a sample program that is being provided by my close friend, business partner and fellow software engineer Sir Larry Dave Emol.

Student Offense Information System is written using Microsoft Visual Basic 6 and Microsoft Access as our database backend.

This system is used for student information offense in the High School. It is easy to retrieve the information of student  because it is recorded in the database, system also can generate report for complains.

These are the following features of the system
Manage Complainants
Manage Respondent
Manage Committee
Manage Offenses

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