1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
-
-
- public class NumberUtilities {
-
- public static String getRange(int stop) {
- String result ="";
-
- for(int i = 0; i < stop; i++){
- result = result + i;
- }
- return result;
- }
-
- public static String getRange(int start, int stop) {
- String result ="";
-
- for(int i = start; i < stop; i++){
- result = result + i;
- }
- return result;
- }
-
- public static String getRange(int start, int stop, int step) {
- String result ="";
-
- for(int i = start; i < stop; i+= step){
- result = result + i;
- }
- return result;
- }
-
- public static String getEvenNumbers(int start, int stop) {
- String result ="";
-
- for(int i = start; i < stop; i++){
- if( i % 2 == 0)
- {result = result + i;
- }
- }
- return result;
- }
-
- public static String getOddNumbers(int start, int stop) {
- String result ="";
-
- for(int i = start; i < stop; i++){
- if( i % 2 != 0)
- {result = result + i;
- }
- }
- return result;
- }
-
- public static String getExponentiations(int start, int stop, int exponent) {
- String result= "";
-
- for(int i = start; i <= stop; i++){
-
- result = result + (int)(Math.pow(i, exponent));
-
- }
- return result;
- }
- }
|