1
vote
2answers
48 views
Javascript - How should I calculate the result use for loop?
Suppose a carpark charges a $2 minimum fee to park for up to 3 hours, then the carpark charges an additional $0.5 per hour for each hour. For example, park for 5 hours charge $2+$0 …
-3
votes
3answers
65 views
For loop in while loop
Hi, can I put a for loop in while loop? For example:
while($end = 1)
{
for ($i = 0; $i < count($match); $i++)
{
$mathcas = $match[$i][1];
}
}
Thanks. :)
0
votes
1answer
5 views
as2 simple for loop not populating textbox.
hi,
I have got an xml file that brings text into a flash movie in the form of an array,
I need to population some textboxes and want to do this using a for loop.
My loop look like …
0
votes
5answers
56 views
PHP str_replace with for loop from array
Ok I have a str_replace and what I want to do, is take values from an array, and take the next piece to replace the word "dog" with. So basically I want the $string to read:
"The …
0
votes
3answers
637 views
msbuild exec task with for
I am trying to run the following commands as part of a msbuild script:
for /R . %f in (*.targets) do copy /Y "%f" "C:\Program Files (x86)\MSBuild\Microso
ft\VisualStudio\TeamBuild …
1
vote
0answers
19 views
Output results of a task in a FOR loop with added variables for logging
G'day all,
Trying to output the results of the task I'm running in a FOR loop with additional data. In this case, I'm using the FOR loop to read in server names from a text file t …
1
vote
2answers
147 views
new dynamic tools analysis for C-code
Could somebody tell me wich new dynamic tools analysis for C-code are there like valdgrind?
1
vote
5answers
91 views
Iteration through arrays in arrays PHP
Hello
How can i itarate this array
array(2) {
[0]=>
array(1) {
[0]=>
array(14) {
[0]=>
string(17) "ratosk8@censored"
[1]=>
string( …
0
votes
1answer
26 views
Help with for /f batch file
heres my code:
start /realtime /b /wait .\jampDed.exe
for /f "tokens=1-5 delims=:" %%d in ("%time%") do rename .\CIA_Secure_Host2\qconsole.log %%d-%%e-%%f
start .\Serv.bat
cmd
t …
0
votes
3answers
32 views
Java 2dim table for-iteration
I'm writing a 'Sudoku' program, and I need to write a method to check whether a number, the user wants to insert in a certain cell is already contained by the row, column or region …
0
votes
2answers
87 views
Multiple initialization in C# for cycle
How can I (if it is possible at all) intialize multiple variables of different type in C# for cycle? Example:
for (MyClass i = 0, int j = 1;j<3;j++,i++)
-2
votes
2answers
133 views
How to create a compiler for c# programs using java [closed]
Is it possible to write c# compiler using java?
1
vote
3answers
184 views
Converting an input word number (like seven) into a character (like @)
so if the user types down seven with Scanner, @@@@@@@ (7) will be the output. I'll have to use a for loop statement but I can at least figure out that much. Just need help with fig …
1
vote
2answers
262 views
mocking superclass protected variable using jmockit
Hi,
I couldnt able to mock the protected varibale defined in the superclass.i could able to mock the protected method in superclass but couldnt to mock the protected variable in t …
0
votes
1answer
44 views
Jquery using wrapAll
I need to find all the p tags inside all the divs with a class of someClass and wrap them with another div. This is how the beginning mark up would look like :
<div class="some …
