Skip to content

Commit 526ad45

Browse files
Updated Programming
1 parent 142f96b commit 526ad45

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Java Basics/Programming/Questions.MD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Palindrome Number [Iterative + Recursion] {Different Approches}
66
* Armstrong Number [Iterative + Recursion]
77
* ASCII value
8+
* Factorial
89

910
<hr>
1011

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import java.util.*;
2+
3+
class Fibonacci_Series{
4+
public static void main(String[] args) {
5+
Scanner sc = new Scanner(System.in);
6+
sc.close();
7+
}
8+
}

0 commit comments

Comments
 (0)