FIFO Javascript
Por: thebill • 14/9/2015 • Relatório de pesquisa • 262 Palavras (2 Páginas) • 475 Visualizações
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FIFO</title>
</head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<style>
#resultados{ color:#333; font-weight:600; display:table; font-size:15px; width:900px; background: #DDE2EE}
.barra{ display: table; width:100%; height:3px; background:#FFF}
</style>
<body style=" font-family:Arial, Helvetica, sans-serif; text-align:center; margin:0px;" >
<div style=" display:table; width:100%;" align="center">
<div style=" display:table; background: #4b67a1; width:100%;" align="center">
<div style="display:table; font-weight:600; width:900px; color:#FFF; font-size:20px; padding:20px 0;" align="left" >≣ Escalonamento FIFO</div>
</div>
<br />
<div id="resultados">
</div>
<script>
// inicializa as variáveis
var processo = new Array();
var tempo = new Array();
// cria o nosso array de processo de alunos
processo[0] = [ "Processo 1", 5];
processo[1] = [ "Processo 2",3];
processo[2] = [ "Processo 3", 8];
processo[3] = [ "Processo 4", 9];
processo[4] = [ "Processo 5", 9 ];
for(var i = 0; i < processo.length; i++){
...