1) The order of words in an English sentence is reversed and then output. For example, enter "How is", Output "You is how", (2) write unit test to test, (3) Use Elcemma to view code coverage, require coverage to reach 100%

Source: Internet
Author: User

package;

import Java.util.Scanner;

Public class Testtwo {

Public Static void Testtwo (String str) {

TODO auto-generated Method stub

string[] Strarr = Str.split ("\\s+|[,]");

StringBuffer result = new stringbuffer ();

for (int i = strarr.length-1;i >=0; i--) {

Result.append (Strarr[i] + "");

}

Result.setcharat (Str.length ()-0, (char) 0);

System. out. println ("Reversed order results are:" +result.tostring ());

}

}

package;

Import static org.junit.assert.*;

import org.junit.Test;

Public class testtwotest {

@Test

Public void Test () {

String str = "How is You";

Testtwo. Testtwo (str);

}

}

1) The order of words in an English sentence is reversed and then output. For example, enter "How is", Output "You is how", (2) write unit test to test, (3) Use Elcemma to view code coverage, require coverage to reach 100%

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.