Posts by leogif • 329 points
6 posts
-
0
votes1
answer39
viewsA: START IONIC SHOWS ERROR
Create a new project this way to understand what is happening ? cd ~ ionic start meuApp tabs After installation run ionic serve -l
-
-2
votes1
answer79
viewsQ: I can’t enter data numbers float
<?php require_once('cabecalho.php'); require_once('conn.php'); ?> <?php $nome = $_REQUEST["nome"]; $preco = $_REQUEST["preco"]; $query = "insert into…
-
6
votes2
answers40971
viewsQ: Problem using Switch Case in Python 3
print ("ESCOLHA A CERVEJA PELO NUMERO") print ("1-ANTARTICA R$6.00;2-SKOL R$6.50;3-BRAHMA R$8.20;4-SOL R$8.25;") cerveja = input ("5-NORTENHA R$16.80;6-PROIBIDA R$4.80;7-DEVASSA R$5.90;8-HEINEKEN…
-
-1
votes3
answers1472
viewsQ: Problem using if Elif Else (Else error)
n = input ("informe seu nome ") b1 = float(input("informe sua nota em Biologia no 1º Bimestre ")) b2 = float(input("informe sua nota em Biologia no 2º Bimestre ")) b3 =…
-
5
votes1
answer9671
viewsQ: Problem declaring variables for average calculation in Python 3
n1 = input("informe sua nota do 1º Bimestre ") n2 = input("informe sua nota do 2º Bimestre ") n3 = input("informe sua nota do 3º Bimestre ") n4 = input("informe sua nota do 4º Bimestre ") media =…
-
10
votes6
answers65891
viewsQ: How to convert a string variable to int?
As I correctly declare a value whole, for he is returning that my variables are strings. n1 = input("informe um número ") n2 = input("informe um número ") soma = n1 + n2 print ("O resultado da soma…