Java Lab Manual - by - Mufaddal
Java Lab Manual - by - Mufaddal
Enter a number : 7
7! = 5040
Enter a number : 8
8! = 40320
class States{
int total_states = 28;
public void my_state(){
System.out.println("There are " + total_states + "
states in India");
System.out.println("I live in Madhyapradesh");
}
}
Animal is running
Dog is barking
Animal is eating
interface Base2{
void B2M1();
void B2M2();
}