Search:

Type: Posts; User: le pencil

Search: Search took 0.11 seconds.

  1. Replies
    5
    Views
    1,620

    Re: Help with Arrays!

    So what I did was add an int above the for loops


    int a = 32;
    for(int row = 0; row<plainTextGrid.length; row++){
    for(int column = 0; column <plainTextGrid.length; column++){
    ...
  2. Replies
    5
    Views
    1,620

    Re: Help with Arrays!

    I don't actually get what you are trying to say. My char array is in the two for loops, I want to increment the value of it until it reaches the last char in the array. so for example I could do...
  3. Replies
    5
    Views
    1,620

    Help with Arrays!

    Hey guys! I'm fairly new to java. For my course at uni I've got to design a caeser box that will encrypt a word and decrypt it. I pretty certain I've got the logic behind it so I won't need someone...
Results 1 to 3 of 3