I would like to make a list of A-Z .
One detail, is based on breaking / dividing this list (gem) alphabet into parts:
Although my difficulty is in, after being clicked on the button, the same bring the list like this:
First click...
I'm starting to venture into the development world now and hit a question when using IF and Else.
The code below is OK
<select id="course_list" >
<?php $my_query = new WP_Query('tribe_events_cat=petroleo-e-gas'); ?>...
I started to study Python very soon, and created the following code:
gene = open("AY365046.1.txt","r")
g=0;
a=0;
c=0;
t=0;
gene.readline()
for line in gene:
line = line.lower()
for char in line:
if char == "g":
g...
I have a button and I want it to be clicked when I return true to if of another class, but I did not find any method how I do it.
Button b = new Button();
Another class:
public static ObservableList getObs(ObservableL...
I'm doing a program for arduino written in C ++ to turn on and off leds when a button is pressed.
I created a class Led and put the methods in it, now I wrote an if that checks when a button is pressed, however I want it when the if verify that...
I'm trying to set the value of a char vector of a struct inside an if, but without success ...
A struct itself:
struct ficha {
char nome[31], classificacao[31], telefone[21];
float altura, peso, imc;
}paciente1, pa...
Hello, I'm developing a program that calculates and sizes wall-beams. It basically works with security checks (request less than or equal to resistance), when one of these checks is not met, the program will alert the user to the error and then...
I'm doing a very simple example using Django.
In my view I have the following:
def index(request,idade):
string = '''
{% if idoso >= 65 %}
Você já é idoso
{% else %}
Você não é idoso
{...