Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

/* * Author : * Purpose: This program calculates the factorial of an input number. (Factorial.java) */ import java.util.Scanner; public class Factorial { public static void main(String[] args) { Scanner input=new Scanner(System.in); int number; Factorial factObj=new Factorial(); //1. Input a positive integer number do { System.out.print("Enter a positive integer number: "); number=input.nextInt(); if (number<0) System.out.println("Error: Invalid number."); }while (number<0);

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!