• Skip to main content
  • Skip to primary sidebar

Founder at work

Master the skills to create and launch your next SaaS company

  • About Me
  • Reviews
  • Resources
  • Community
  • Contact
  • Lessons
  • Series
  • Search
  • Login

Java

Have you ever wanted to see if a number really is even or odd?

October 24, 2012 by Rick Hernandez Leave a Comment

import java.util.Scanner; public class EvenOrOdd { public static void main (String []args) { int EvenOrOdd = 0; // set EvenOrOdd to zero Scanner input = new Scanner(System.in); // create a new object scanner … [Read more...] about Have you ever wanted to see if a number really is even or odd?

Filed Under: Java, Programming

Have you ever wanted to code exponents in java? now you can!

October 23, 2012 by Rick Hernandez Leave a Comment

import java.util.Scanner; public class Exponents { public static void main (String []args) { int base = 0; int exponent = 0; Scanner input = new Scanner(System.in); System.out.println("Please enter a base: "); base = … [Read more...] about Have you ever wanted to code exponents in java? now you can!

Filed Under: Java, Programming

What is method overloading in java?

October 22, 2012 by Rick Hernandez Leave a Comment

Method overloading, allows you to define multiple methods with the same name allowing you to to define multiple methods with the same name as long as each of the methods has a different signature.  So that brings up the question of  what is a signature? its the … [Read more...] about What is method overloading in java?

Filed Under: Java, Programming, Uncategorized

how to get to know shapes in java?

October 21, 2012 by Rick Hernandez Leave a Comment

Simple Two step processes Step one: Create a method (work that gets done) Step two: Show of your fabulous work (Call your new method ) … [Read more...] about how to get to know shapes in java?

Filed Under: Generative Art, Java, Programming

Revised Java Coin program

October 18, 2012 by Rick Hernandez Leave a Comment

import java.util.Scanner; //imports Scanner util public class MinimumCoins { public static void main(String[] args) { Scanner input = new Scanner(System.in); //creates an instance of a class called input // sets inintial … [Read more...] about Revised Java Coin program

Filed Under: Java, Programming

Java Minimum Coins Program, How to maximise your change skills?

October 17, 2012 by Rick Hernandez Leave a Comment

import java.util.Scanner; //imports Scanner util public class MinimumCoins { public static void main(String[] args) { Scanner input = new Scanner(System.in); //creates an instance of a class called input // sets inintial … [Read more...] about Java Minimum Coins Program, How to maximise your change skills?

Filed Under: Java, Programming

Ever wanted to know the logic behind hello world program in java?

October 17, 2012 by Rick Hernandez Leave a Comment

package cutnpaste; //package name public class HelloWorld { public static void main(String[] args) { //initalization int age; String Message = "What is Your Name"; String GiveAge = "Enter your age: "; … [Read more...] about Ever wanted to know the logic behind hello world program in java?

Filed Under: Java, Programming

Looking deeper into methods!

October 17, 2012 by Rick Hernandez Leave a Comment

import java.util.Scanner; public class MaximumFinder { public void findMaximun() { Scanner input = new Scanner (System.in); System.out.print( "Enter three floating poing values sepertated by spaced: "); double number1 = … [Read more...] about Looking deeper into methods!

Filed Under: Java, Programming

Do you have five items you want to sell?

October 14, 2012 by Rick Hernandez Leave a Comment

import javax.swing.JOptionPane; // To get windows panels public class RetailSales { public static void main (String [] args) { // name of strings String OnlineSales = "Welcome to the online retailer choose" + "choose the items … [Read more...] about Do you have five items you want to sell?

Filed Under: Java, Programming

Adding Loops to the grade calculation project

October 11, 2012 by Rick Hernandez Leave a Comment

… [Read more...] about Adding Loops to the grade calculation project

Filed Under: Java, Programming

  • « Go to Previous Page
  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to page 4
  • Go to page 5
  • Go to Next Page »

Primary Sidebar

Learn How To Take Your Idea And Convert It Into An App From Scratch Even If You Have Never Written A Single Line Of Code.

  • How to Find Your Next Great App Idea
  • The Secret To Getting PAID To Build Your Own App
  • How To Create Your App (SaaS, Mobile, VR, AR, Game)
  • How To Monetize Your Apps
Learn More
4.82 Ratings

Copyright © 2025 · JSecademy Blog Theme on Genesis Framework · WordPress · Log in