To give a positive integer of no more than five digits, the requirements are as follows: 1. Calculate the number of digits, and 2. Print the numbers in reverse order.

Source: Internet
Author: User

: A positive integer of no more than five digits. Required: 1. How many digits is it? 2. Print the numbers in reverse order.

 

01 package com. qimenguigu;

02 import java. util .*;

03

04 public class Test24 {

05 public static void main (String [] args ){

06 then SC = new pipeline (System. in );

07 System. out. println ("enter a positive integer not greater than 5 digits :");

08 String s = SC. nextLine ();

09 // convert s to a character array and assign it to ss

10 char [] ss = s. toCharArray ();

11 int count = 0;

12 for (int I = ss. length; I> 0; I --){

13 System. out. print (ss [I-1]);

14 count ++;

15}

16 System. out. println ();

17 System. out. println ("the number of digits is:" + count );

18}

19}


Related Article

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.