Home
All posts
Thursday, January 26, 2017
Factorial of a Number Python
Following Code will Calculate the factorial of a number : Code:: fact=1 i=input("Enter Any Number:") for j in (range(1,i+1)...
Read more
National Flag ("Tiranga") Using Java
Following Code will create Our National Flag("Tiranga") using Java Applet Code:: import java.applet.*; import java.awt.*;...
Tuesday, January 24, 2017
Number Pattern 4 Java :)
Following Java Program prints the Following Pattern: 0 1 0 0 1 0 1 0 1 0 0 1 0 1 0 import java.util.*; public class patt5 { ...
Amount Investment Java
Following Code will calculate the number of years required to get Desired Amount in an Investment Code:: import java.util.*; public c...
Alphabet Pattern Java :)
This Program prints the following Pattern: A BB CCC DDDD EEEEE package patterns; import java.util.*; public class pattern1 { ...