THOUSANDS OF FREE BLOGGER TEMPLATES

Martes, Enero 17, 2012

Lyrics of Hey, Soul Sister – Train
Heeey heeeey heeeeey
Your lipstick stains on the front lobe of my left side brains
I knew I wouldn’t forget you
And so I went and let you blow my mind
Your sweet moving
The smell of you in every single dream I dream
I knew when we collided you’re the one I have decided
Who’s one of my kind
Hey soul sister, ain’t that mister mister on the radio, stereo
The way you move ain’t fair you know
Hey soul sister, I don’t wanna miss a single thing you do tonight
Heeey heeeey heeeey
Just in time, I’m so glad you have a one track mind le me
You gave my life direction
A game show love connection, we can’t deny
I’m so obsessed
My heart is bound to beat right out my untrimmed chest
I believe in you, like a virgin, you’re Madonna
And I’m always gonna wanna blow your mind
Hey soul sister, ain’t that mister mister on the radio, stereo
The way you move ain’t fair you know
Hey soul sister, I don’t wanna miss a single thing you do tonight
Well you can cut a rug
Watching you is the only drug I need
So gangster, I’m so thug
You’re the only one I’m dreaming of
You see I can be myself now finally
In fact there’s nothing I cant be
I want the world to see you’ll be with me
Hey soul sister, ain’t that mister mister on the radio, stereo
The way you move ain’t fair you know
Hey soul sister, I don’t wanna miss a single thing you do tonight
Hey soul sister, I don’t wanna miss a single thing you do tonight
Heeey heeeey heeeeey (tonight)
Heeey heeeey heeeeey (tonight)

Linggo, Enero 15, 2012

import java.util.Scanner;

public class answer
{
public static void main(String[] args)
{

String ans;
int subject;

Scanner number = new Scanner (System.in);
System.out.println("SELECT FROM THE SUBJECT BELOW:  ");
System.out.println("\n========================= ");
System.out.println("   [1] - MATH");
System.out.println("   [2]- FILIPINO");
System.out.println("   [3] - SCIENCE");
System.out.println("   [4] - PROGRAMMING");
System.out.println("========================= ");
System.out.println("\n\n\nENTER YOUR SELECT SELECTION:  ");
subject = number.nextInt();


if(subject == 1)
    {
        System.out.println("\n[1] - MATH");
        System.out.println("YOU CHOOSE MATH");
        System.out.println("WHAT IS THE SUM OF 10 * 5");
        System.out.println("ENTER ANSWER HERE:");
        ans = number.next();
        if(ans.equals("50"))
            {
            System.out.println("your correct!!!");
            }
            else
            {
            System.out.println("your are wrong!!!");
            }
        }

else if(subject == 2)
    {
        System.out.println("\n[1] - FILIPINO");
        System.out.println("YOU CHOOSE FILIPINO");
        System.out.println("The reason why was jose rizal shot to death?");
        System.out.println("ENTER ANSWER HERE:");
        ans = number.next();
        if(ans.equals("cardiac arrest..."))
            {
            System.out.println("your correct!!!");
            }
            else
            {
            System.out.println("your are wrong!!!");
            }
        }

else if(subject == 3)
    {
        System.out.println("\n[1] - SCIENCE");
        System.out.println("YOU CHOOSE SCIENCE");
        System.out.println("THE STUDY OF LIFE.");
        System.out.println("ENTER ANSWER HERE:");
        ans = number.next();
        if(ans.equals("biology"))
            {
            System.out.println("your correct!!!");
            }
            else
            {
            System.out.println("your are wrong!!!");
            }
        }
else if(subject == 4)
    {
        System.out.println("\n[1] - PROGRAMMING");
        System.out.println("YOU CHOOSE PROGRAMMING");
        System.out.println("collection of information that is organized so that it can easily be accessed, managed, and updated..");
        System.out.println("ENTER ANSWER HERE:");
        ans = number.next();
        if(ans.equals("Database"))
            {
            System.out.println("your correct!!!");
            }
            else
            {
            System.out.println("your are wrong!!!");
            }
        }

else
    {
        System.out.println("\nINVALID ENTRY");

    }
}
}