Pregon de Inicio de Fiestas 2018

El colegio Dr. Camilo Gallegos Domínguez se hizo presente en el Pregon de Fiestas por los 63 años de cantonización de Arenillas.

Grupo de Danza Camilino

Conformado por estudiantes de Décimo año de Educación Superior.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

viernes, 23 de enero de 2015

MARCOS Y COLORES EN C++

#include <iostream>
#include <windows.h>
#include <stdio.h>

#define negro 0
#define azul 1
#define verde 2
#define cyan 3
#define rojo 4
#define magenta 5
#define marron 6
#define grisclaro 7
#define grisoscuro 8
#define azulclaro 9
#define verdeclaro 10
#define cyanclaro 11
#define rojoclaro 12
#define magentaclaro 13
#define amarillo 14
#define blanco 15

using namespace std;

void t(int n)
{

    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), n);
}

void g(int x, int y)
{
  HANDLE coss = GetStdHandle(STD_OUTPUT_HANDLE);
  COORD Pcoss;
  Pcoss.X = x;
  Pcoss.Y = y;
  SetConsoleCursorPosition(coss, Pcoss);

}

void coutc(int x, int y, int n, char* output){

    g(x,y); t(n); cout<<output;

}

//El cuadro

void Limite()
{
     int i,j=1,w;
     t(azul);
     for (i= 1; i<78 ; i++)
      {
        Sleep(5);
        g(1,1); printf("%c",201);
        g(78,1); printf("%c",187);      
        g(i,1); printf("%c",205);
        g(i,22); printf("%c",205);
        if (i%2==0)
         {
           if (j<22)
             {
                j++;
                g(1,j); printf("%c",186);
                g(78,j); printf("%c",186);
             }
         }
        g(78,22); printf("%c",188);
        g(1,22); printf("%c",200);
      }
     g(1,1); printf("%c",201);
     g(78,1); printf("%c",187);
     g(78,22); printf("%c",188);
     g(1,22); printf("%c",200);
}


main()
{
    Limite();
    t(verde);
    g(5,6);printf("ddddddd");
    coutc(3,3,rojo,"Hola amigos, como estan?");
    coutc(3,4,marron,"Yo estoy muy bien, y ustedes?");
    coutc(3,5,azul,"Estamos genial");
    Sleep(5000);
}

jueves, 22 de enero de 2015

WEB DE INEVAL

martes, 20 de enero de 2015

CAJERO AUTOMÁTICO EN DEV C++


#include<stdio.h>
#include<conio.h>
#include<windows.h>
#include<stdlib.h>

main ()
{
system("cls");
int clave;
int op,saldo,deposito,retiros,consulta,trans;
char op1,op2;
saldo=750;
//op=1;
gotoxy(3,2); printf("***************              ****                          ****");
gotoxy(3,3); printf("***************              **** *                      * ****");
gotoxy(3,4); printf("**              *            ****   *                   *  ****");
gotoxy(3,5); printf("**                           ****    *                 *   ****");
gotoxy(3,6); printf("**               *           ****     *               *    ****");
gotoxy(3,7); printf("**                           ****      *             *     ****");
gotoxy(3,8); printf("**              *            ****       *           *      ****");
gotoxy(3,9); printf("***************              ****        *         *       ****");
gotoxy(3,10);printf("***************              ****         *       *        ****");
gotoxy(3,11);printf("**              *            ****          *     *         ****");
gotoxy(3,12);printf("**                           ****           *   *          ****");
gotoxy(3,13);printf("**               *           ****            * *           ****");
gotoxy(3,14);printf("**                           ****             *            ****");
gotoxy(3,15);printf("**              *            ****                          ****");
gotoxy(3,16);printf("***************              ****                          ****");
gotoxy(3,17);printf("***************              ****                          ****");
gotoxy(6,40);printf("digite la clave de acceso [     ]");
gotoxy(33,40);scanf("%i",&clave);
while(clave!=2345)
     {
      system("cls");
      gotoxy(3,3);printf("clave incorrecta");
      gotoxy(6,40);printf("digite la clave de acceso[      ]");
      gotoxy(33,40);scanf("%i",&clave);
     }
     do
     {
                system("cls");
                gotoxy(9,5);printf("CAJERO AUTOMATICO");
                gotoxy(9,6);printf("DEPOSITOS...........................1");
                gotoxy(9,7);printf("RETIROS.............................2");
                gotoxy(9,8);printf("CONSULTAS...........................3");
                gotoxy(9,9),printf("SALIR...............................4");
                gotoxy(9,10);printf("ESCOGER OPCION[   ]");
                gotoxy(25,10);scanf("%d",&op);
                  switch(op)
                     {
                      case 1:
                       do
                      {
                        system("cls");
                        deposito=0;
                        gotoxy(37,11);printf("depositos");
                        gotoxy(1,11);printf("por favor ingrese la cantidad que desee depositar");
                        gotoxy(3,13);scanf("%d",&deposito);
                        saldo=saldo+deposito;
                        gotoxy(4,17);printf("Presiona 'S' para volver a Depositar o 'N' para salir al menu");
                        op1=getch();
                       }
                        while(op1=='s');
                        break;
                        case 2:
                           do
                           {
                            system("cls");
                            retiros=0;
                                gotoxy(37,11);printf("RETIRO DE DINERO");
                            gotoxy(1,11);printf("por favor ingrese la cantidad que desee depositar");
                            gotoxy(3,13);scanf("%d",&retiros);
                            saldo=saldo-retiros;
                            gotoxy(4,17);printf("Presiona 'S' para volver a Depositar o 'N' para salir al menu");
                            op2=getch();
                           }
                            while(op2=='s');
                            break;
                       case 3:
                        system("cls");
                        gotoxy(37,11);printf("consulta");
                        gotoxy(3,16);printf("usted cuenta con un saldo de %d",saldo);
                        getch();
                        break;
                      case 4:
                        gotoxy(9,20);printf("gracias por utilizar nuestros servicios");
                        break;
                        getch();
                      default:
                        gotoxy(9,20);printf("error...vuelva a digitar la opcion correcta");
                        break;
                     }
       }
     while(op!=4);
getch();
}

miércoles, 14 de enero de 2015

TAREA PARA EL MARTES 27 DE ENERO 2015 - TERCERO CONTABILIDAD

Descargar estos  2 archivos:

Lea paso a paso este documento para poder realizar el ejercicio

Descargue este archivo en Excel donde contiene la información

Ya habiendo descargado estos dos archivos debemos abrir el primero y leer los pasos a seguir y lo que se desea realizar.

Luego abrir el archivo en Excel donde contiene la información que necesita para la feliz realización de la tarea.

Éxitos en su trabajo.

sábado, 3 de enero de 2015

LA EDUCACION EN FINLANDIA