Link Exchange
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
จากโจทย์ในเว็บ http://www.sourcecode.in.th/wbread.php?no=3407ข้อ 9)จงเขียนโปรแกรม แสดงคำว่า "ELECTRONICS"เลื่อนจากซ้ายไปขวา8 รอบ โดยในแต่ละรอบให้เปลี่ยนสีด้วย
/* @Author: Mr.Suppakit Thongdee @Website: www.sourcecode.in.th */ #include <stdio.h> #include <conio.h> #include <string.h> #include <dos.h> int main(){ short loop =8; short width =80; char *Text ="ELECTRONICS"; clrscr(); for(int i=0; i<loop;i++){ for(int j=1; j<=width-strlen(Text); j++){ clrscr(); gotoxy(j,15); textcolor(i+1); cprintf("%s",Text); delay(80); } } getch(); return 0; }
Home - Article - Tutorial - Sourcecode - Dev Handbook - Search - WebBoard - Links - About Us