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;...
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...
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...
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('&...
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...
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:...
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...
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];...
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...
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...