• 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

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 = input.nextInt();
     
     System.out.println("Please enter a Exponent: ");
     exponent = input.nextInt(); 
     
     int total = integerPower(base, exponent);// call the method and pass two values
     
     System.out.println("The exponentiation of the number is:" + total); // print out the results from method
  } // end of main method
  
  public static int integerPower(int b, int e) // custom method
  {
    int c = 1; // set my counter to 1
    int base = b; // determain a base
   
    while (c < e) // do this while this condition is true
    {
      b = base * b;
      c++;    
    }
     return b; // return back b     
  } // end of integerPower Method
}// end of class 


Rick Hernandez

I always had a passion for the field of STEM (Science, Technology, Engineering, and Math) and I knew I wanted to do something to make a difference in the world. I just didn’t know where to start. I was an immigrant in a new country, grew up in a tough environment, and wasn’t sure how… Read More

Share this:

  • Click to share on Twitter (Opens in new window)
  • Click to share on Facebook (Opens in new window)

Related

Filed Under: Java, Programming

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