Re: [algogeeks] JAVA PROGRAM ERROR

2012-08-22 Thread vaibhav shukla
U r passing x in the method stringTimes and in loop there is 'n' .. so
complier error :P
make it x and u'll get HiHi

On Wed, Aug 22, 2012 at 2:36 AM, Rohit Singhal rsinghal.it...@gmail.comwrote:

 what error it is showing


 On Wed, Aug 22, 2012 at 12:41 AM, Rajesh Kumar testalgori...@gmail.comwrote:

 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;in-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 algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Rohit Singhal
 09211931609

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
best wishes!!
 Vaibhav

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] JAVA PROGRAM ERROR

2012-08-22 Thread SHOBHIT GUPTA
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 testalgori...@gmail.comwrote:

 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;in-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 algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 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 algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] JAVA PROGRAM ERROR

2012-08-22 Thread Madhukar Bharti
Jsut Change  in  for(i=0;in-1;i++)  put x in pace of n in  stringTimes ()


On Wed, Aug 22, 2012 at 2:36 AM, Rohit Singhal rsinghal.it...@gmail.comwrote:

 what error it is showing


 On Wed, Aug 22, 2012 at 12:41 AM, Rajesh Kumar testalgori...@gmail.comwrote:

 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;in-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 algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Rohit Singhal
 09211931609

  --
 You received this message because you are subscribed to the Google Groups
 Algorithm Geeks group.
 To post to this group, send email to algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
Madhukar Bharti

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] JAVA PROGRAM ERROR

2012-08-22 Thread Arman Kamal
it should be x - 1 not n - 1

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] JAVA PROGRAM ERROR

2012-08-21 Thread Rajesh Kumar
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;in-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 algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] JAVA PROGRAM ERROR

2012-08-21 Thread Rohit Singhal
what error it is showing

On Wed, Aug 22, 2012 at 12:41 AM, Rajesh Kumar testalgori...@gmail.comwrote:

 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;in-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 algogeeks@googlegroups.com.
 To unsubscribe from this group, send email to
 algogeeks+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
Rohit Singhal
09211931609

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.