Questions tagged as 'loop'

1
answer

How to return to the beginning of an Array in C #

I have to develop a code where it does the Cipher of Cesar encryption, the characters that I should use should be in this sequence; A ~ Z, (whitespace), 0 ~ 9. I already developed a lot of the code, but I came across a problem; for (int i = 0;...
asked by 23.11.2016 / 17:14
0
answers

How do I change the wordpress loop category via ajax

I'm going to have a select with 3 categories, every time I change the value of select it changes the result of lop Example: <select> <option value="Noticias">Noticias</option> <option value="Shopping">Saab</optio...
asked by 28.10.2016 / 17:43
2
answers

Is there any error in these command lines? [closed]

I am making comparisons between documents through Bash command lines and using a loop command. However, an error occurs with the results: ./anibatch.sh: line 38: ./ANIcalculator: No such file or directory ./anibatch.sh: line 39: ./ANIcalculat...
asked by 10.10.2016 / 19:48
1
answer

go through array and insert jquery line break

This application does not work as expected. var storeElements = [];     var store = []; $('body').on('click', 'a.add_aluno', function () { var aside = $(this).parent().parent().children('aside'); $(this).parent().parent().append('&...
asked by 29.10.2016 / 02:24
0
answers

About the second Nightmare video, my character does not get loop animation [closed]

My question is about character animation. The tutorial I followed is that of "Playing with Nils" The video is "Unity3D - How to create character, animation and movement - Nightmare - Unity Training Day 2014 # 02" The tool I'm using is Unity 4...
asked by 16.06.2016 / 22:46
0
answers

Loop wordpress with colored div

Good morning! I'm creating a website for a gym where you have a menu of modalities. I made a custom post in wp to create the modalities, but my problem is when it comes to calling modalities, since each modality has a specific color. Example:...
asked by 14.06.2015 / 15:59
1
answer

Make a loop for 2 labels when clicking

I need a loop for 2 labels where each one appears text already specified in the code. Just out of curiosity. I wanted a loop with the same effect as the code below: private void button1_Click(object sender, EventArgs e) { lbl_1.Text...
asked by 27.06.2015 / 08:02
2
answers

I'm trying to print an array using for in javascript, but it does not display correctly

Print manually and then tried to use for to print, but it turned out I could not see it properly. let mochila = new Array(); let item1 = ['corda', 2], item2 = ['faca', 3], item3 = ['cura', 23], item4 = ['prego', 35];...
asked by 07.11.2018 / 13:30
2
answers

Create loop in templates with php

I'm having a hard time creating an algorithm to implement using loops in a simple template class. I have my class below, it gets an HTML file, looks for specific strings that are in this file from values of an array and replaces it wi...
asked by 16.05.2017 / 13:22
3
answers

How to use "while not in" in Python?

I tried looping while to check if a condition was met. If the user types 0, 1 or 2 the program should stop asking the user which number he will choose. If the user chooses a number other than 0, 1 or 2, the program will ask the user which number...
asked by 22.05.2018 / 19:25