Click here to Skip to main content
15,887,812 members
Home / Discussions / Java
   

Java

 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan18-Jan-18 1:45
mveRichard MacCutchan18-Jan-18 1:45 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
hm918-Jan-18 1:55
hm918-Jan-18 1:55 
GeneralRe: Find and query files in a directory in date format yyymmdd Pin
Richard MacCutchan18-Jan-18 2:54
mveRichard MacCutchan18-Jan-18 2:54 
QuestionWhat is wrong with this java code, why is it not printing Factorial? Pin
Member 1362428615-Jan-18 10:02
Member 1362428615-Jan-18 10:02 
AnswerRe: What is wrong with this java code, why is it not printing Fibonacci? Pin
Richard MacCutchan15-Jan-18 21:45
mveRichard MacCutchan15-Jan-18 21:45 
GeneralRe: What is wrong with this java code, why is it not printing Fibonacci? Pin
Member 1362428616-Jan-18 2:07
Member 1362428616-Jan-18 2:07 
GeneralRe: What is wrong with this java code, why is it not printing Fibonacci? Pin
Richard Deeming16-Jan-18 3:07
mveRichard Deeming16-Jan-18 3:07 
AnswerRe: What is wrong with this java code, why is it not printing Factorial? Pin
vishaljamdagni29-Jan-18 18:58
professionalvishaljamdagni29-Jan-18 18:58 
Maybe you shouldn't give the factorial of 1 the value 2 as it is returning in your first "if" construct. Now I am not expert but I think this should work:

Java
public class facto{
    public static void main(String[] args){
        System.out.println(dust(5));
    }

static int dust(int n)
   {
       int output;
       if(n==1){
         return 1;
       }
       
       output = dust(n-1)* n;
       return output;
   }
}


I suppose that in your version the recursion is not able to complete properly because of "maybe" your trying to both return the value and calculate it at the same time. Hope the code snippet helps, I am just a beginner myself so apologies if I didn't get it right. P.S I know I haven't considered the condition of the input being 0.

modified 8-Feb-18 1:12am.

QuestionJava Array Out Of Bound Issue Pin
Akshit Gupta13-Jan-18 5:50
Akshit Gupta13-Jan-18 5:50 
AnswerRe: Java Array Out Of Bound Issue Pin
phil.o13-Jan-18 6:20
professionalphil.o13-Jan-18 6:20 
QuestionRemove All Items in nested HashMap Pin
Member 1354659210-Jan-18 9:12
Member 1354659210-Jan-18 9:12 
AnswerRe: Remove All Items in nested HashMap Pin
Richard MacCutchan10-Jan-18 23:27
mveRichard MacCutchan10-Jan-18 23:27 
GeneralRe: Remove All Items in nested HashMap Pin
Member 1354659211-Jan-18 0:04
Member 1354659211-Jan-18 0:04 
QuestionEclipse, windows disappear Pin
C-P-User-310-Jan-18 1:41
C-P-User-310-Jan-18 1:41 
AnswerRe: Eclipse, windows disappear Pin
Richard MacCutchan10-Jan-18 1:58
mveRichard MacCutchan10-Jan-18 1:58 
Questionfor fingerprint code in java Pin
Member 136066264-Jan-18 1:25
Member 136066264-Jan-18 1:25 
AnswerRe: for fingerprint code in java Pin
Richard MacCutchan4-Jan-18 2:24
mveRichard MacCutchan4-Jan-18 2:24 
QuestionConnection Issue between Netbeans 8.2 and SQL Server 2014 Pin
Member 1360161431-Dec-17 20:23
Member 1360161431-Dec-17 20:23 
SuggestionRe: Connection Issue between Netbeans 8.2 and SQL Server 2014 Pin
Richard MacCutchan31-Dec-17 22:51
mveRichard MacCutchan31-Dec-17 22:51 
AnswerRe: Connection Issue between Netbeans 8.2 and SQL Server 2014 Pin
jschell1-Jan-18 6:57
jschell1-Jan-18 6:57 
QuestionJava Project Pin
Member 1359041122-Dec-17 7:42
Member 1359041122-Dec-17 7:42 
AnswerRe: Java Project Pin
Richard MacCutchan22-Dec-17 21:13
mveRichard MacCutchan22-Dec-17 21:13 
GeneralRe: Java Project Pin
barrontD2-Jan-18 19:28
barrontD2-Jan-18 19:28 
QuestionJava Pin
zakarie mukhtar abdi21-Dec-17 20:07
zakarie mukhtar abdi21-Dec-17 20:07 
AnswerRe: Java Pin
Richard MacCutchan21-Dec-17 21:44
mveRichard MacCutchan21-Dec-17 21:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.