1. 程式人生 > >用c語言把螢幕變成座標系的方法:

用c語言把螢幕變成座標系的方法:


#include <stdio.h> #define X  100 #define Y  100 typedef struct Coordinate     {        int x;        int y;    }Coordinate; Coordinate  coordinate[100]; char pic[X][Y]; void main(void) {    int x,y;    int i,j;    coordinate[0].x=2;    coordinate[0].y=2;    x=coordinate[0].y;    y=coordinate[0].x;    pic[x][y]='*';    for(i=0;i<X;i++)         for(j=0;j<Y;j++)                printf("%c",pic[i][j]); }//這樣就在(2,2)處輸出一個‘*’,左上角是原點