Tengo 19 años, y no recuerdo cuando me hice miembro, supongo que hace unos 3 o 4 años.
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ú#include <iostream>
#include "list.h"
int main()
{
opsList lista;
lista.Add(6);
lista.Add(8);
lista.Add(1);
lista.Add(0);
lista.Add(3);
lista.Add(5);
lista.Print();
lista.Sort();
lista.Print();
lista.Reverse();
lista.Print();
signed int vector[] = {-45, -76, -123456, -895763};
lista.AddFromVector(vector, 4);
lista.Print();
return 0;
}
reg add "HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\ Open\.Current" /v "" /t REG_SZ /d
for /l %%_ in (1, 1, 10) do (
echo %%_
)