@darhxp: Te registraste acá solo para responder un tema y ......4 años tarde? El tema es del 2008, por favor, no los revivas.
Saludos, SanchoMazorka!
Saludos, SanchoMazorka!
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: lnvisible en 29 Octubre 2011, 19:07 PMJajaja interesante, pero no conozco la competencia, ni he hecho este tipo de trabajos antes por eso les pido ayuda, ya que más de uno debe trabajar de esto.
Un poco menos que tus competidores que son conocidos por tus clientes y un poco más que tus competidores que no son conocidos por tus clientes.
#include <iostream>
using namespace std;
class Time{
public:
Time();
void setTime(int, int, int);
void printMilitary();
void printStandard();
private:
int hour;
int minute;
int second;
};
//ESTE CODIGO
Time::Time() {hour = minute = second = 0;}
void Time::setTime(int h, int m, int s){
hour = (h >= 0 && h < 24) ? h :0;
minute = (m >= 0 && m < 60) ? m :0;
second = (s >= 0 && s < 60) ? s :0;
}
void Time::printMilitary(){
cout << (hour < 10 ? "0" : "") << hour << ":"
<< (minute < 10 ? "0" : "") << minute << ":"
<< (second < 10 ? "0" : "") << second;
}
void Time::printStandard(){
cout << ((hour == 0 || hour == 12) ? 12 : hour % 12)
<< ":" << (minute < 10 ? "0" : "") << minute
<< ":" << (second < 10 ? "0" : "") << second
<< (hour < 12 ? " AM" : " PM");
}
// ESTE CODIGO
main(){
Time t;
cout << "The initial military time is ";
t.printMilitary();
cout << "\nThe initial standar time is ";
t.printStandard();
t.setTime(13, 27, 6);
cout << "\n\nMilitary time after seTime is ";
t.printMilitary();
cout << "\nStandar time after setTime is ";
t.printStandard();
t.setTime(99, 99, 99);
cout << "\n\nAfter attempting invalid settings:\n" << "Military Time: ";
t.printMilitary();
cout << "\Standard time: ";
t.printStandard();
cout << endl;
return 0;
}
<div id="game_div_container" style="width: 100%"> <!-- DIV CONTENEDOR -->
<div id="game_div" class="yellowline" onclick="muestra_oculta(this.id);"> <!-- BARRA CON TITULO QUE OCULTA EL CONTENEDOR -->
<div style="display: table; margin-left: auto; margin-right: auto;">
<div id="game_div_icon" class="left"><img id="game_div_icon_img" src="file:///C|/red_less.png" width="16" height="16" align="bottom" /></div>
<div id="game_div_text" class="right"> Call of Duty: Modern Warfare 2 Multiplayer</div>
</div>
</div>
<div id="game_div_container"> <!-- DIV CONTENEDOR -->
<div id="mapPreview">
<div id="preview_div">
<img src="img/nomap-en.png" alt="desconocido" name="mapname" width="240" height="135" longdesc="mapa desconocido" />
</div>
<div id="mapinfo_div"></div>
</div>
<div id="info_bar"></div>
<div id="jugadores"><h2>Datos aca!</h2></div>
<div id="status2" align="center" style="padding-top:5px"></div>
</div>
function muestra_oculta(id){
if (document.getElementById){
var el = document.getElementById(id + "_container"); //se define la variable "el" igual a nuestro div
if (el.style.display == 'none'){
el.style.display = 'table';
}
else{
el.style.display = 'none';
}
}
}
#preview_div{
text-align:center;
position:relative;
overflow:hidden;
margin-top:5px;
margin-bottom:2px;
}
#mapinfo_div{
color:#660000;
text-align:center;
font:Tahoma;
font-weight:bold;
font-size:12px;
}
#info_bar{
text-align:center;
font:Tahoma;
font-weight:bold;
font-size:12px;
}
#mapPreview{
height:160px;
}
var matches = txt.match('([0-9]{1,5}) ([0-9]{1,5}) (.*)');
var matches = txt.match(/([0-9]{1,5}) ([0-9]{1,5}) (.*)/);