python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Undeclared Identifier in do while loop, C
#include <stdio.h>
#include <cs50.h>
int main(void)
{
do
{
//ask for input with 1-8
int height = get_int("Height: ");
}
while (height > 0);
}
...
Hashaam Zafar
Votes: 0
Answers: 3
How can I let the user input repeat my code in java?
Here is my code so far. (this is part of it, it's very long) I can't figure out what's wrong with it. I have tried searching for other answers on this website and tried something similar but still don...
Aya Abdalla
Votes: 0
Answers: 1
Enumerate the results on a table
As example we have 3 different Quantity Input
a=5 b=6 c=15
then on the query we have as total result 50 rows
the necessity is to enumerate the rows as a starting from value 1.
then the sixth one star...
Alex G A
Votes: 0
Answers: 1
How can I sort an array using do while loop instead of for
Just a little something i am trying to figure out, but can't quite put my finger on it. There is something wrong with my code as it is not working as intended and not sorting properly. While i know ho...
Komin
Votes: 0
Answers: 1