Calculadora HTML
Artigos Científicos: Calculadora HTML. Pesquise 862.000+ trabalhos acadêmicosPor: maykyecheal • 26/5/2014 • 397 Palavras (2 Páginas) • 238 Visualizações
<html>
<head>
<title>Aula de Eventos</title>
<script language="javaScript">
function adicao()
{
var a=document.getElementById('n1').value;
var b=document.getElementById('n2').value;
a=parseFloat(a);
b=parseFloat(b);
document.getElementById('res').value=a+b;
}
</script>
</head>
<body>
<h2>Calculadora</h2>
<label>Numero 1</label><input type="text"
value="" id="n1" name="n1">
<label>Numero 2</label><input type="text"
value="" id="n2" name="n2">
<label>Resultado</label><input type="text"
value="" id="res" name="res">
<br><input type="button" value="+"
onClick="adicao()">
<div>
<label>Nome:
</label>
<label>RA:</label>
</div>
</body>
</html>
#include <iostream>
using namespace std;
int main()
{
int qt_numero,numero,i;
cout<<"Qual a quantidade de número(s) a ser(em) analisado(s):";
cin>>qt_numero;
for(i=1;i<=qt_numero;i++)
{
cout<<"\nDigite um numero";
cin>>numero;
if(numero>=0)
{
cout<<"Numero Positivo";
}
else
{
cout<<"Numero negativo";
}
}
cin>>i;
}
using namespace std;
int main()
{
int opcao,nota1,nota2, peso1, peso2,media_arit,media_pond,contador;
contador=1;
...