Quantcast
Channel: Fórum ASP
Viewing all articles
Browse latest Browse all 1214

Calculo de 3 notas em ASP (VB SCRIPT)

$
0
0

Pessoal,

 

 

Estou tentando criar um programa que calcule  a média de 3 notas que serão inseridas pelo proprio usuário, e no final irá responder se o aluno foi ou não aprovado, mas só dá erro, segue abaixo o código :

 

 

 



<html><head><title>Formulário</title></head>
<body>  
<form method="get" action="return.asp">
<div>Entre com a Primeira Nota: </div><input type="text" name="nome">
<div>Entre com a Segunda Nota: </div><input type="text" name="endereco">
<input type="submit" value="enviar">  

 

<%
a= ()
b=()
c= ()
nota= ((a + b + c )/3)
%>


<%

if nota > 5 then 'comparação entre dois valores
response.write  (“A nota foi & nota &: aluno reprovado!”) <br>”
msgbox (nota)
else
if nota < 5 then 'comparação entre dois valores
response.write (“A nota foi & nota &: aluno reprovado!”) “<br>”
end if
end if
%>

</body>


Viewing all articles
Browse latest Browse all 1214

Trending Articles