Link de los archivos DEV C++ y CONIO: CLIC AQUÍ
Ejemplo codigo fuente visto en clases:
#include <cstdlib>
#include <iostream>
#include <conio.h>
using namespace std;
int main(int argc, char *argv[])
{
textcolor(YELLOW);
gotoxy(24,2);cout<<"ESCUELA PREPARATORIA LOMA BONITA"<<endl;
gotoxy(12,4);cout<<"PROGRAMA EN DEV C++, EL CUAL USAMOS LA INSTRUCCION SWITCH "<<endl;
textcolor(LIGHTGREEN);gotoxy(38,8);cout<<"MENU"<<endl;
textcolor(LIGHTGRAY);
gotoxy(22,10);cout<<"OPCION (1).- SUMATORIA DE DOS NUMEROS"<<endl;
gotoxy(22,11);cout<<"OPCION (2).- RESTA DE DOS NUMEROS"<<endl;
gotoxy(22,30);
system("PAUSE");
return EXIT_SUCCESS;
}
Videos de Instalación de DEV C++ y CONIO
CODIGO DE COLORES PARA CONIO:
BLACK 0
BLUE 1 Azul
GREEN 2 Verde
CYAN 3 Cían
RED 4 Rojo
MAGENTA 5 Magenta
BROWN 6 Marrón
LIGHTGRAY 7 Gris Claro
DARKGRAY 8 Gris Oscuro
LIGHTBLUE 9 Azul Claro
LIGHTGREEN 10 Verde Claro
LIGHTCYAN 11 Cían Claro
LIGHTRED 12 Rojo Claro
LIGHTMAGENTA 13 Magenta Claro
YELLOW 14 Amarillo
WHITE 15 Blanco
Tambien puedes poner en lugar del color el numero =)
No hay comentarios:
Publicar un comentario