- class StringLength
- {
- int length=0,i=0,m=0;
- public String TestLength(String s,int n)
- {
- length=s.length();
- if(length>=n)
- return s;//不知道当你的字符串长度大于你所要的长度时你想干嘛,所以就给你输出原字符串了。
- else
- {
- m=n-length;
- for(i=0;i<=m;i++)
- s+=" ";}
- return s;
- }
- }
- class Test
- {
- public static void main(String[] args)
- {
- StringLength strl=new StringLength();
- String str=strl.TestLength("zxvko", 3);
- System.out.println(str+";");
- }
- }
复制代码 这样运行可以,也不知道你上边的代码是一部分还是全部,都没有个主函数,
以后发帖子时用插入代码来发代码,要不然看起来很那啥。 |