Search:

Type: Posts; User: tufaylahmed

Search: Search took 0.11 seconds.

  1. [SOLVED] Re: For Loop - need a hint for what to do next

    Ah! yes figured it out, working perfectly now, thanks for all the help! :D
  2. [SOLVED] Re: For Loop - need a hint for what to do next

    Done a bit more digging and come up with this:


    import java.util.Scanner;
    public class NameLength
    {
    public static void main (String[]args)
    {
    Scanner scan = new Scanner(System.in);...
  3. [SOLVED] Re: For Loop - need a hint for what to do next

    hi, thanks for the detailed response, from this i've worked out that this may work for the for loop as so there are enough repeat for the whole name:


    for (int i = 1; i < length; i++)

    but i...
  4. [SOLVED] For Loop - need a hint for what to do next

    Basically what i need to do is create a program which asks the user to enter their name which then displays the character length of the name which then converts the name into uppercase letter and...
Results 1 to 4 of 4