Description: |
Write a sample code to print Fibonacci Series using for loop in java. |
Code: | ||
|
Output: |
0
1
1
2
3
5
8
13
21
34
55
89
144
233
377
|
Description: |
Write a sample code to print Fibonacci Series using for loop in java. |
Code: | ||
?
|
Output: |
0
1
1
2
3
5
8
13
21
34
55
89
144
233
377
|
Description: |
Write a sample code for Factorial in java.. |
Code: | ||
?
|
Output: |
Factorial of : 5
Factorial is : 120
|
Description: |
Write a sample code to check Even OR Odd using scanner in java. |
Code: | ||
?
|
Output: |
Enter the Number:
12
Number is Even
|
Description: |
Write a sample code to find ASCII values in java. |
Code: | ||
?
|
Output: |
Ascii Character---A==65 |
Description: |
Write a sample code to find Armstrong number in java |
Code: | ||
?
|
Output: |
This is not Armstrong
|