Search:

Type: Posts; User: chronoz13

Search: Search took 0.10 seconds.

  1. [SOLVED] Re: inverted string again, far more difficult

    public AbstractStringBuilder reverse() {
    boolean hasSurrogate = false;
    int n = count - 1;
    for (int j = (n-1) >> 1; j >= 0; --j) {
    char temp = value[j];
    char temp2 = value[n - j];
    ...
  2. [SOLVED] Re: inverted string again, far more difficult

    yeah \m/ tnx tnx!!

    im not testing the last code yet, im just gonnat post if theres any hard problems that i will encounter just in case,

    tnx sir!!! \m/
  3. [SOLVED] Re: inverted string again, far more difficult

    tnx Json hehe, I appreciate it tnx a lot,
    and tnx hellowold,its just that i want to understand how does things work.
  4. [SOLVED] Re: inverted string again, far more difficult

    WOW this one is awsome for me !! tnx again sir JSon!! anyway

    ahm.. just a favor..
    can you please modify the first program with this kind of problem. without using StringBuilder..
    i want to...
  5. [SOLVED] Java program to invert a string and display the last enter key in uppercase

    i want to ask some help about this ,
    ill show the code first

    this is the same as the recent post about inverting a string.


    import java.io.*;


    public class Sample
Results 1 to 5 of 5