Wednesday, December 13, 2017

Word Counter in Ruby

In this article I would like to share with you a sample program that will ask the user to give a string or sentence and then our program will count the number of words in the given string or sentence using Ruby as our programming language. The  code is very short and easy to understand.

I am currently accepting programming and web development work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.




Sample Program Output


Program Listing

word.rb

# word.rb
# Written By: Mr. Jake R. Pomperada, MAED-IT
# December 13, 2017
# Tool : Ruby and Sublime Text Editor
# Location : Bacolod City, Negros Occidental Philippines

# method to count the word in the sentence

def wordcount(str_value)
    str_value.split(/\s+/).length
end

str_input =""
answer = ""

until answer.downcase == "n" do 
print "\n\n"
print "===== WORD COUNTER IN RUBY ====="
print "\n\n"
print "Created by Mr. Jake R. Pomperada"
print "\n\n"
print "Give a string : "
str_input = gets.chop

total_words = wordcount(str_input)

print "\n\n"
puts "The total number of words in the given the sentence is #{total_words}."
print "\n"
print "Do you want to continue Y/N ? : "
answer= gets.chop
end  
print "\n\n"
    print "End of Program"
    print "\n\n"


Friday, December 8, 2017

For Statement in Go

A very simple program that I wrote using Go programming language to demonstrate how for statement works.

I am currently accepting programming and web development work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.



Sample Program Output


Program Listing

for.go

// For Loop Statement in Go 
// Written By Mr. Jake R. Pomperada
// December 8, 2017

package main

import "fmt"

func main(){
    fmt.Print("\n\n")
fmt.Print("For Loop Statement in Go")
fmt.Print("\n\n")
    for a := 1; a <= 20; a++ {
        fmt.Print(" ",a , " ")
    }
fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}

Tuesday, December 5, 2017

Navigational Menu in HTML and CSS

I just create a simple navigational menu using HTML and CSS I try to learn web page design and development which is not my strong skill set.  The code is very simple and easy to understand. I hope you will like my work.

I am currently accepting programming and web development work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.


Sample Program Output



Program Listing

index.htm

<!-- index.htm                                                          -->
<!-- Written By Mr. Jake R. Pomperada, MAED-IT  -->
<!-- December 5, 2017                                             -->
<html>
 <head>
  <title>
  Mini Tabs Using CSS
  </title>
  </head>
  <style>

  h1 {
  font-family: Arial, san-serif;
  font-size: 24px;
  color: #fff;
  padding: 4px;
  background-color:  #696;
  }

  #minitabs  {
     margin:0;
     padding: 0 0 20px 10px;
     border-bottom: 1px solid #696;
   }
  
  #minitabs li {
  font-family: Arial, san-serif;
  font-size: 20px;
  margin:0;
  padding: 0;
  display: inline;
  list-style-type: none;
  }
  
  #minitabs a {
  float: left;
  line-height: 14px;
  font-weight: bold;
  margin:0 12px 6px 12px;
  text-decoration: none;
  color: #9c9;
  }

 #minitabs a.active, #minitabs a:hover {
  border-bottom:  6px solid #969;
  padding-bottom:  2px;
  color : #363;
 }

 #minitabs a:hover {
  color:#696;
 }

</style>

<body>
<br><br>
<h1> Simple Navigation Menu Using HTML and CSS </h1> 
   <br><br>
<ul id="minitabs">
<li> <a href="/apples/" title="Click for Apples.">
Apples</a></li>
<li> <a href="/oranges/" title="Click for Oranges.">
Oranges</a></li>
<li> <a href="/banana/" title="Click for Banana.">
Banana</a></li>
<li> <a href="/grapes/" title="Click for Grapes.">
Grapes</a></li>
    </ul>

</body>
</html>
    


Friday, December 1, 2017

Positive and Negative Number Checker in Go

Here is a simple program that I wrote in Go to check if the given number by our user is positive or negative number.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.




Sample Program Output


Program Listing

negative.go


// Positive and Negative Number Checker in Go 
// Written By Mr. Jake R. Pomperada
// December 1, 2017

package main

import "fmt"

func main(){
    var a int

fmt.Print("\n\n")
fmt.Print("Positive and Negative Number Checker in Go")
fmt.Print("\n\n")
    fmt.Print("Give a Number : ")
    fmt.Scanln(&a)
    fmt.Print("\n\n")
    if(a>=0){
        fmt.Println("The given number " ,a," is Positive number.")
    }else{
        fmt.Println("The given number " ,a, " is Negative number.")
    }
    fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}






Odd and Even Number Checker in Go

A very simple program that I wrote using Golang that will ask the user to give a number and then our program will check and determine if the given number is an Odd or Even number.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.





Sample Program Output


Program Listing


odd_even.go


// Odd and Even Number Checker in Go 
// Written By Mr. Jake R. Pomperada
// December 1, 2017

package main

import "fmt"

func main(){
    var a int

fmt.Print("\n\n")
fmt.Print("Odd and Even Number Checker in Go")
fmt.Print("\n\n")
    fmt.Print("Give a Number : ")
    fmt.Scanln(&a)
    fmt.Print("\n\n")
    if(a%2==0){
        fmt.Println("The given number " ,a," is Even number.")
    }else{
        fmt.Println("The given number " ,a, " is Odd number.")
    }
    fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}







Area of the Circle Solver in Go

I am a beginner in terms of programming using Go programming language I wrote this program to ask the user to give a the radius of the circle and then it will computes it's area. The code is for beginners in Go programming.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.





Sample Program Output


Program Listing

area.go


// Area of the Circle Solver in Go 
// Written By Mr. Jake R. Pomperada
// December 1, 2017

package main

import (
    "fmt"
)


func main(){
    var rad float64
    const PI float64 = 3.1415 // Constant Declaration
    var area float64
   
    fmt.Print("\n\n")
fmt.Print("Area of The Circle Solver")
fmt.Print("\n\n")
    fmt.Print("Enter Radius of The Circle  : ")
    fmt.Scanln(&rad)
    
    area = PI * rad * rad   

    fmt.Print("\n\n")
    fmt.Printf("The area of the circe is %.2f" ,area)
    fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}


    
    



Thursday, November 30, 2017

Product of Two Numbers in Go

Here is a simple program that I wrote using Go programming language that will ask the use to give two numbers and then our program will compute it's product.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.





Sample Program Output


Program Listing

product.go


// Product of Two Numbers in Go 
// Written By Mr. Jake R. Pomperada
// November 30, 2017

package main

import "fmt"

func main(){
    var a,b,product int

    fmt.Print("\n\n")
   fmt.Print("Product of Two Numbers")
    fmt.Print("\n\n")
    fmt.Print("Enter first value  : ")
    fmt.Scanln(&a)
    fmt.Print("Enter second value  : ")
    fmt.Scanln(&b)

    product = (a*b)
    
    fmt.Print("\n\n")
    fmt.Print("The product of " ,a , " and " , b , " is ", product, ".")
    fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}

Hello World in Go

A very simple program that I wrote using Go programming language that will display hello world message on the screen.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.



Sample Program Output


Program Listing

hello.go


// Hello World in Go 
// Written By Mr. Jake R. Pomperada
// November 30, 2017


package main

import "fmt"

func main() {  
fmt.Print("\n\n")
fmt.Print("Hello World in Go")
fmt.Print("\n\n")
    fmt.Println("Hello World From Go Language.")
    fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}

Addition of Two Numbers in Go

In this article I would like to share with you a sample program that will ask the user to give to numbers and then our program will compute the sum of two numbers using Go programming language. The code is very simple I just stated learning how to program using Go.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.




Sample Program Output


Program Listing

add.go


// Addition of Two Numbers in Go 
// Written By Mr. Jake R. Pomperada
// November 30, 2017

package main
import "fmt"
func main(){
var a,b,sum int
fmt.Print("\n\n")
fmt.Print("Addition of Two Numbers")
fmt.Print("\n\n")
    fmt.Print("Enter first value  : ")
    fmt.Scanln(&a)
    fmt.Print("Enter second value  : ")
    fmt.Scanln(&b)

    sum = (a+b)
    
    fmt.Print("\n\n")
    fmt.Print("The sum of " ,a , " and " , b , " is ", sum, ".")
    fmt.Print("\n\n")
    fmt.Print("End of Program")
     fmt.Print("\n\n")
   
}



Tuesday, November 28, 2017

Leap Year Checker in C

A program that I wrote using C language that will ask the user to give a year and then our program will check if the given year is a leap year or not.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.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 is (034) 4335675.





Sample Program Output


Program Listing

leap.c


#include <stdio.h>

int main()
{
    int year=0;

    printf("Leap Year Checker in C");
    printf("\n\n");
    printf("Give a Year:  ");
    scanf("%d",&year);
   if(year%4 == 0)
        {
        if( year%100 == 0)
        {

            if ( year%400 == 0) {
                printf("\n\n");
                printf("The given %d is a leap year.", year);
                printf("\n\n");
                printf("End of Program");
                printf("\n\n");
            }
            else {
                printf("\n\n");
                printf("The given %d is not a leap year.", year);
                printf("\n\n");
                printf("End of Program");
                printf("\n\n");
            }
        }
        else {
            printf("\n\n");
            printf("The given %d is a leap year.", year );
            printf("\n\n");
            printf("End of Program");
            printf("\n\n");
        }
    }
    else {
        printf("\n\n");
        printf("The given %d is not a leap year.", year);
        printf("\n\n");
        printf("End of Program");
        printf("\n\n");
    }

    return 0;
}