Skip to content

Selecao12/NumberLength

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

//# NumberLength //Find number length. package MyOwnPack;

public class NumberLength2 {

public int NumLength(int n) {
	String s = "" + n;
	return s.length();
}

public int NumLength(long n) {
	String s = "" + n;
	return s.length();
}

}

About

Find number length.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published