Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement string Separation in Java

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "how to achieve string separation in Java". In daily operation, I believe many people have doubts about how to achieve string separation in Java. The editor consulted all kinds of data and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "how to achieve string separation in Java". Next, please follow the editor to study!

1. Topic description

Continuous input strings, please split each string with a length of 8 and output to a new string array

If the length of a string is not an integer multiple of 8, please suffix the number 0, and the empty string is not processed.

Enter a description:

Enter strings continuously (enter 2 times, each string length is less than 100)

Output description:

Output to a new array of strings of length 8

Input example:

Abc123456789

Examples of output:

Abc0000012345678900000002, Program Plan 1

Basic ideas:

# include # include using namespace std;int main () {string s; while (cin > > s) {int count = 0; int iTuno; while (I

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report