Wednesday, April 13, 2022

Simple Yearly Interest Calculator in JavaScript

 A simple yearly interest calculator is written in JavaScript to solve the loan of the customer.

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


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

 

Thank you very much for your support

 




Program Listing


index.htm


<!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>SIMPLE YEARLY INTEREST CALCULATOR</title>

    <style>

        * {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

        }

        body {

            min-height: 100vh;

            display: flex;

            justify-content: center;

            align-items: center;

            background-color: #7A819F;

            color: #2B2E3E;

            font-family: sans-serif;

        }

        main {

            padding: 50px;

            border-radius: 10px;

            background-color: #D9D4D0;

            min-width: 500px;

        }

        h1 {

            margin-bottom: 5px;

            font-size: 28px;

            text-align: center;

        }

        h2 {

            margin-bottom: 30px;

            font-size: 20px;

            text-align: center;

        }

        .block {

            margin: 0 auto 12px;

            display: flex;

            align-items: center;


        }

        label {

            display: block;

            width: 35%;

            line-height: 40px;

            background-color: #47356E;

            color: #eee;

            text-align: center;

        }

        input {

            padding: 10px;

            width: 65%;

            font-size: 14px;

            border-radius: 0 5px 5px 0;

            border: 2px solid #000;

            outline: none;

        }

        .btnBlock {

            display: flex;

            width: 100%;

        }

        .btn {

            display: inline-block;

            padding: 15px;

            background-color: #CD8F3C;

            color: #fff;

            outline: none; 

            border: none;

            cursor: pointer;

            width: 150px;

            width: 50%;

            font-size: 16px;

            text-decoration: none;

            text-align: center;

            transition: all .2s;

        }

        .btnReset {

            background-color: #6B838E;

        }

        .btn:hover {

            opacity: 0.9;

        }

        .total {

            display: block;

            width: 100%;

            margin-top: 12px;

            padding: 20px 0;

            background-color: #2F4C58;

            font-size: 16px;

            text-align:center;

            color: #f3f3f3;

            line-height: 1.5;

        }

        .hide {

            display: none;

        }

    </style>

</head>

<body>

    <main class="container">

        <h1>SIMPLE YEARLY INTEREST<br>CALCULATOR</h1>

        <h2>Jake R. Pomperada, MAED-IT, MIT</h2>

        <form action="" id="frmCalc">

            <div class="block">

                <label for="grade1">Principal Amount:</label>

                <input type="number" min="1" id="principal" autofocus required>

            </div>

            <div class="block">

                <label for="grade2">Interest Rate (%):</label>

                <input type="number" min="0" max="100" id="rate" required>

            </div>

            <div class="block">

                <label for="grade3">Time in years:</label>

                <input type="number" id="time" required>

            </div>

            <div class="btnBlock">

                <button type="submit" class="btn">CALCULATE</button>

                <a href="" class="btn btnReset">RESET</a>

            </div>

            <div class="total hide"></div>

        </form>

    </main>


    <script>

        document.querySelector('#frmCalc').onsubmit  = (e) => {

            e.preventDefault()

            let total = document.querySelector('.total'),

                interest = document.querySelector('.interest'),

                inputs = document.querySelectorAll('input[type="number"]'),

                calc = 1,

                monthly = 0;

                

            calc = (inputs[0].value * inputs[1].value)/100;

            totalAmount = parseInt(inputs[0].value) + parseInt(calc);

            monthly = totalAmount/(inputs[2].value * 12);

      

            total.classList.remove('hide')

            total.innerHTML = 'Total Amount is: '+totalAmount.toFixed(2)+'<br>'+

                            'Monthly Payment is: '+monthly.toFixed(2)+'<br>'+

                            'Total Interest is: '+calc.toFixed(2)

        }

    </script>

</body>

</html>

Tuesday, April 12, 2022

Grade Checker With Remarks in Visual Basic NET

Grade Checker With Remarks in VB.NET

 A simple program to check if the student given grade is a passing or failing grade using Microsoft Visual Basic NET 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


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

 

Thank you very much for your support

 




 Program Listing

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim grade As Integer
        grade = Val(TextBox1.Text)

        If (grade >= 75) Then
            MessageBox.Show("Grade : " & grade & vbCrLf & "Remarks :" & "PASSED")
        Else
            MessageBox.Show("Grade : " & grade & vbCrLf & "Remarks :" & "FAILED")
        End If
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        TextBox1.Text = ""
        TextBox1.Focus()
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        End
    End Sub
End Class
 


Odd and Even Numbers Using Functions and Arrays in C++

Odd and Even Numbers Using Functions and Arrays in C++

 A simple program asks the user to give a series of numbers and then the program will display the odd and even numbers using functions and 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


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

 

Thank you very much for your support





Program Listing

// Written By: Mr. Jake R. Pomperada, MAED-IT
// Date : November 21, 2010 Sunday
// Tool : C++


#include <iostream>

using namespace std;

// Global Variables

int a=0,r=0,data=0,b=0;
int values[10];


void get_data();
void display_even();
void display_odd();


void get_data(void)
{
     cout << "\n\n";
cout << "\tOdd and Even Numbers Using Functions and Arrays in C++";
     cout << "\n\n";
     cout << "How Many Numbers : ";
     cin >> data;
     cout << "\n";
        for (b=1; b <= data; b++)
            {
            cout << "Enter Item No. "
                  << b <<  " :";
            cin >> b[values];
          }
}


void display_even(void)
{

    cout << "\n\n";
    cout << "List of Even Numbers : ";
    cout << "\n\n";
        for (a=1; a<=data; a++) {
            r = a[values] % 2;
            if (r ==0) {
                cout << " " <<a[values]
                << " ";
         }

     }
}


void display_odd(void)
 {
    cout << "\n\n";
    cout << "List of Odd Numbers : ";
      cout << "\n\n";
     for (a=1; a<=data; a++) {
         r = a[values] % 2;
         if (r !=0) {
          cout << " " <<a[values]
            << " ";
         }
     }
 }
 main() {

     get_data();
     display_even();
     display_odd();
     cout << "\n\n";
     system("pause");
 }


Monday, April 11, 2022

Quotient of Two Numbers Using ng-bind in AngularJS

Quotient of Two Numbers Using ng-bind in AngularJS

 Machine Problem

Write a program that uses the ng-bind directive that will accept two numbers, and then the program will compute the quotient of the 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

 

Thank you very much for your support




Program Listing

<!-- index.htm

  Author   : Prof. Jake Rodriguez Pomperada, MAED-IT, MIT

  Date     : October 11, 2021   Monday  2:50 PM

  Place    : Bacolod City, Negros Occidental

  Websites : www.jakerpomperada.com and www.jakerpomperada.blogspot.com

  Email    : jakerpomperada@gmail.com

 -->

<html>

<head>

  <title>Quotient of Two Numbers Using ng-bind in AngularJS</title>

</head>

<style>

body {

  font-family: arial;

  font-size: 25px;

  font-weight: bold;

}

</style>

<script type="text/javascript" src="angular.min.js">

</script>


<script>

       var app = angular.module("quotient", []);

        app.controller('app', ['$scope', function ($app) {

         $app.divide= function () {

                $app.solve = 0;

                $app.solve = ($app.val_1 / $app.val_2);

                $app.display = $app.solve + ".";

            }

        }]);

    </script> 

</script>  

<div ng-app="quotient" ng-controller="app">

  <form>

  <table border="0" cellspacing=10>

  <tr>Quotient of Two Numbers Using ng-bind in AngularJS</tr>

  <tr>

  <td>Enter First Value </td>

  <td><input type="number"  ng-model="val_1" ng-change="divide()"></td>

  </tr>

   <tr>

  <td>Enter Second Value </td>

  <td><input type="number"  ng-model="val_2" ng-change="divide()"></td>

  </tr>

   <tr>

  </table>

  </form>

  <span>The quotient of {{val_1}}, and {{val_2}} is </span> 

    <span ng-bind="display"></span>

   </p> 

</div>

</body>

</html>


Sunday, April 10, 2022

Grade Checker With Remarks in C++

Grade Checker With Remarks in C++

 A simple program to check if the given grade is passed or failed 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


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

 



 Program Listing

#include <iostream>

using namespace std;

int main()
{
    char subject[50];
    string remarks;
    int grade=0;

  cout << "\n\tGrade Checker With Remarks in C++\n\n";
  cout <<"\tEnter Subject    : ";
  cin.getline(subject, 50);
  cout <<"\tEnter Your Grade : ";
  cin >> grade;
 
    if (grade>=75) {
        remarks = "PASSED";
    } else {
        remarks = "FAILED";
    }


  cout <<"\n\n";
  cout << "\t======= DISPLAY RESULT ======\n\n";
  cout <<"\tSubject  : " << subject <<"\n";
  cout <<"\tRemarks  : " << remarks;
  cout <<"\n\n";

}

Addition of Three Numbers Using Functions in PHP

Addition of Three Numbers Using Functions in PHP

 A simple program to show how to create a function to compute the sum of three numbers 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


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada




Program Listing

index.php

<?php

//creating a addition function in PHP
function addition($a,$b,$c)
{
$sum=$a+$b+$c;
echo "The sum of $a, $b and $c is $sum.";
}

echo "<br> Addition of Three Numbers Using Functions in PHP<br><br>";

//calling the addtion function

addition(1,2,3);

?>


Addition of Two Numbers in Go

Addition of Two Numbers in Go

 Machine Problem

Write a program that will ask the user to give two numbers and then the program will compute the sum of the 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg


=================================================

Want to support my channel?


GCash Account


Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada





 Program Listing

/* addition.go
   Author   : Mr. Jake Rodriguez Pomperada,MAED-IT, MIT
   Date     :  March 20, 2021 Saturday  10:12 PM
   Location : Bacolod City, Negros Occidental
   Websites :www.jakerpomperada.comandwww.jakerpomperada.blogspot.com
   Emails   : jakerpomperada@gmail.com and jake_pomperada@tup.edu.ph
 */

package main

import "fmt"

func main() {
var val1 int32
var val2 int32
var sum int32

fmt.Print("\n")
fmt.Print("\tAddition of Two Numbers in Go")
fmt.Print("\n\n")
fmt.Print("\tEnter two numbers: ")
fmt.Scanf("%d%d",&val1,&val2)
sum = (val1+val2)
fmt.Print("\n")
fmt.Println("\tThe sum of",val1, "and",val2 ,"is",sum,".")
fmt.Print("\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}