Most voted "else" questions
104 questions
Sort by count of
-
-4
votes1
answer48
viewsI can’t use strcmp in C
I need to show a student’s chart using the license plate, as I do? #include <stdio.h> #include <stdlib.h> #include <string.h> main() { struct ficha { char matricula[9], inf[9];…
-
-4
votes1
answer28
viewsSalary adjustment calculation (according to category) with if Else only returns the first condition of 4. Javascript
I created a Javascript code with if Else to show on the screen the readjustment of a salary according to the category of worker selected in an input type ="radio". It turns out that only the first…
-
-4
votes0
answers22
viewsIdeal Height Of One Person
Here is the code: Create a program that reads the ideal weight of a person of both sexes For men: (72.7*Height) -58 For women: (62.1*Height) - 44.7 print('PESO IDEAL DE UMA PESSOA')…
-
-5
votes2
answers50
viewsIn if, when the user puts another state that is not specified, instead of entering Else, he enters if and continues the code normally
The code is like this: est = input('Qual estado reside atualmente? ') if est == 'São Paulo' or 'SP' or 'sao paulo' or 'São paulo': email = input('Digite o seu e-mail: ') tel = input('Digite o seu…