Error : U didnt declare the variable n in stringTimes function . Just replace x with n . U'll get the answer .
On Wed, Aug 22, 2012 at 12:41 AM, Rajesh Kumar <[email protected]>wrote: > class StringTimes > { > public static void main(String args[]) > { > String str="Hi"; > long i=2; > String get; > get=stringTimes(str,i); > System.out.println(get); > } > public static String stringTimes(String str,long x) > { > int i; > String set=str; > for(i=0;i<n-1;i++) > { > set+=str; > } > return set; > } > } > > OUTPUT should be like:HiHi > > but it gives error plz someone help me > -- > Regards > Rajesh Kumar > > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
