首頁
程式語言
工具下載
學習範例
技術專區
相關書籍
原始碼程式範例
好站相報
技術論壇
易尋網
ASP空間租賃
汽車追蹤的第一個家
弘光科技大學
南開技術學院
巨匠電腦
買賣購物網
Life Light
遠距醫療網
清境民宿珂之幄
原始程式碼
#include <stdio.h> #include <conio.h> #include <dos.h> void paint(int x, int y, int clr); void main(void) { int i; clrscr(); textcolor(4); textbackground(3+128); cprintf("HELLO"); for (i=0;i<16;i++) { paint(5+i,5+i,128+i); delay(1000); } } void paint(int x, int y, int clr) { textcolor(clr); gotoxy(x,y); cprintf("%c%c%c",219,219,219); gotoxy(x,y+1); cprintf("%c%c%c",219,3,219); gotoxy(x,y+2); cprintf("%c%c%c",219,219,219); }
1. 請點選此處複製以上資料
2. 請按
ctrl-c
複製到剪貼簿
3. 切換到ASP的原始內碼區
4. 請按
ctrl-v
貼上所有資料