Banner Ad

    A    L    W    A    Y    S           D    E    S    I    R    E           T    O           L    E    A    R    N           S    O    M    E    T    H    I    N    G           U    S    E    F    U    L   

Monday, May 9, 2011

2010 Final IPE_UNIXC_-1152a question 1

#include <ncurses.h>
int main()
{
      initscr();
      start_color();
      init_pair(1,7,5);
      init_pair(2,0,2);
      init_pair(3,1,3);
      init_pair(4,7,4);
      init_pair(5,0,1);

      attrset(COLOR_PAIR(1));
      for(int y=5;y<=13;y++)
      {int x=20;
            move(y,x);
            printw("*");
            refresh();
            for(int i=0;i<200000000;i++)
            {
            }
            refresh();
      }
      attrset(COLOR_PAIR(2));
        for(int x=20;x<=31;x++)
        {int y=13;
                move(y,x);
                printw("*");
            refresh();
                for(int i=0;i<200000000;i++)
            {
            }
            refresh();
        }
      attrset(COLOR_PAIR(3));
        for(int y=13;y>=5;y--)
        {int x=31;
                move(y,x);
                printw("*");
            refresh();
                for(int i=0;i<200000000;i++)
            {
            }
            refresh();
        }
      attrset(COLOR_PAIR(4));
        for(int x=31;x<=42;x++)
        {int y=5;
                move(y,x);
                printw("*");
            refresh();
                for(int i=0;i<200000000;i++)
            {
            }
            refresh();
        }
      attrset(COLOR_PAIR(5));
        for(int y=5;y<=13;y++)
        {int x=42;
                move(y,x);
                printw("*");
            refresh();
                for(int i=0;i<200000000;i++)
            {
            }
            refresh();
        }


      getch();
      endwin();

      return 0;
}
 

0 comments:

Related Posts Plugin for WordPress, Blogger...

your comments