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?
Need some motivation? check out my empowering words.
Complexity Lean and mean Rock Star Motivation Kill them all Applied thought Change Kick ass programmer Profound connections Passionate about what I do Extreme Ideas Logic flow Rapid Development Creative … [Read more...] about Need some motivation? check out my empowering words.
Have you ever wanted to code exponents in java? now you can!
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!
What is method overloading in java?
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?
how to get to know shapes in java?
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?
Running lean and mean
How can to validate XHTML?
It's important: it's a good tool to help designers and web developers test and debug their current code, help meet the W3C standards and avoid coding nightmares. … [Read more...] about How can to validate XHTML?
What does valid type XHTML mean?
Working with valid XHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" … [Read more...] about Working with valid XHTML
Revised Java Coin program
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