import java.util.Scanner; public class ZodiacSign{ public static void main(String args[]){ Scanner input = new Scanner(System.in); int F
Change the following line
int Feb,March,ZodiacSign,Pisces,Aquarius,Aries,Taurus;
to
int Feb=0,March=0,ZodiacSign=0,Pisces=0,Aquarius=0,Aries=0,Taurus=0;
Method variables need some initial assignment before they are used. So do the same with all the other method variables.