Java casts a numeric string into an integer variable----parameter and experiment code

Source: Internet
Author: User

Experiment Code:

Package demo;

public class CommandParameter {

/**
* @param args
* /
Public static void Main (string[] args) {
//TODO auto-generated method stub
int sum=0; //Set value initial value and 0
System.out.println ("Number of parameters" +args.length); //Length of output parameter number
For (String Arg:args) {

System.out.println (ARG); Use loop structure to output parameters
Sum=sum+integer.parseint (ARG); //cast a numeric string into an integer variable and add sums using the loop structure
}
System.out.println ("Sum of Parameters:" +sum); //The sum of the parameters is output

}

}

Experimental results:

Java casts a numeric string into an integer variable----parameter and experiment code

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.