Ask Experts Questions for FREE Help !
Ask
    sallamsoso's Avatar
    sallamsoso Posts: 1, Reputation: 1
    New Member
     
    #1

    Oct 6, 2013, 10:44 AM
    How can I make program in java that convert capital letter to small letter
    How can I make program in java that convert capital letter to small letter
    Celine91's Avatar
    Celine91 Posts: 51, Reputation: 9
    Junior Member
     
    #2

    Oct 6, 2013, 01:43 PM
    public static void average( char [] letter ) {

    for (int I = 0; I < letter.length; I++) {
    letter[i] = Character.toLowerCase(letter);
    }

    System.out.println(Arrays.toString(letter));
    }
    shanaka1992's Avatar
    shanaka1992 Posts: 5, Reputation: 1
    New Member
     
    #3

    Jan 14, 2014, 10:10 PM
    import java.util.Scanner;






    public class Convert {
    static String s;
    public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    System.out.print("Enter Text Here : ");
    s=scanner.nextLine();


    System.out.println("Your text in Lower Case : "+s.toLowerCase());

    }


    }

Not your question? Ask your question View similar questions

 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.


Check out some similar questions!

How to make a detailed GCD( greatest common divisor) java program. [ 1 Answers ]

our professor wanted me to make a program regarding gcd of (a,b) I know it is easy but... our professor wanted an ouput exactly like this ex. Gcd (40, 23) OUTPUT: 40 = 23(1) + (17) 0 <= 17 < 23 23 = 17(1) + (6) 0 <= 6 < 17

Letter of recommendation for teaching program [ 0 Answers ]

As a student from a foreign country, I am a planning to go to school for a teaching program, here in the United States. What will be the points that should be mentioned in a Letter of Recommendation? My professors are not aware what to write in there and they need guidelines. Can anyone suggest...

How to write a proposal letter to start a new program [ 3 Answers ]

I would like to know how to write a prosal letter for a new program.

Small Claims Debt Validation Sworn Denial Letter Valid 30 Days After Demand Letter my [ 1 Answers ]

Zwicker has sued me for alleged debt and I am representing myself in Michigan in court. The details are as follows. I have only received one demand letter from them dated December 26, 2006. The letter did not provide any information that is required by the Fair Debt Collections Act to dispute...

Commitment letter given & contract of buy is signed, can denial letter make/break? [ 4 Answers ]

My parents "were" in the process of selling their home. The buyers had gotten approved for the loan and signed the contract to close on the house. They put down 1/2 of their down payment as one of two. The second payment would be transferred at closing. The shady buyers decided they...


View more questions Search