About 1,250,000 results
Open links in new tab
  1. Pseudocode in java? - Stack Overflow

    Dec 19, 2012 · Read the pseudocode tag wiki: "Pseudocode is a compact and informal high-level description of a computer programming algorithm. It represents the code and may look similar …

  2. pseudocode - Is my understanding of writing a pseudo code (java ...

    Dec 5, 2014 · So I just learnt how to write pseudo codes and so lets say this is my code import java.util.Date; import java.util.Calendar; import java.text.SimpleDateFormat; class Watever{ …

  3. pseudocode - Java coding converted to pseudo code - Stack …

    Oct 14, 2015 · I have to convert this Java code to pseudocode. The program accepts 2 times and returns the time span in minutes. In Java we have int hr1_int and int hr2_int so what they will …

  4. How this Java for loop should look like in pseudocode?

    How this Java for loop should look like in pseudocode? Asked 11 years, 11 months ago Modified 7 years, 10 months ago Viewed 23k times

  5. Merge sort implementation questions in Java - Stack Overflow

    Apr 2, 2017 · For line 2 of the Merge-Sort pseudo code method, is it correct to code that in Java using Math.ceil () like I did? (Edit: It's actually floor and I updated my code to reflect this.)

  6. Declaring an array in pseudocode - Stack Overflow

    May 24, 2021 · How can I declare the instantiation of an array of int of length 8 in pseudocode? this means, how can I write the following code (Java) in pseudocode? int [] array = new int [8];

  7. java - What is a possible pseudo code for this code? - Stack …

    Nov 5, 2013 · What is a possible pseudo code for this code? I tried the following create string called input which takes user input create Arraylist to store the input//create the scanner and …

  8. java - How can I reverse a linked list? - Stack Overflow

    Jan 31, 2012 · I would draw up a little 3-node linked list on a piece of paper, and just go through the algorithm step by step, see what happens. You could do the same thing in a debugger, but …

  9. pseudocode - Selection Sort, For Java - Stack Overflow

    Jun 1, 2012 · I am having trouble understanding this pseudocode, and implementing it into my program. Can anybody explain it better or show me how the code would look? Thanks. A - an …

  10. pseudocode - Pseudo Code java Arrays - Stack Overflow

    Jan 11, 2017 · I have a pseudo code to implement in Java, however I'm doing something wrong, here's the task and what I have so far: The pseudo code: Algoritm ArrayMax(arr) Input: A 1-D …