用mytc也挺好的而且不用安装!完全绿色软件!那里面有图形方面的函数,其实你只要学会了函数的用法(基础)!你就会画图了!当然只能是一些比较简单的小软件而已!要想编大点的软件(500行以上),还得进一步学习(比如结构体,文件,还有C++等等).如果哪位兄弟想用mytc的话发邮件给我(或把你邮箱写在上面)zhangyibao521@yahoo.com.cn
用mytc也挺好的而且不用安装!完全绿色软件!那里面有图形方面的函数,其实你只要学会了函数的用法(基础)!你就会画图了!当然只能是一些比较简单的小软件而已!要想编大点的软件(500行以上),还得进一步学习(比如结构体,文件,还有C++等等).如果哪位兄弟想用mytc的话发邮件给我(或把你邮箱写在上面)zhangyibao521@yahoo.com.cn
楼主对图形方面挺有研究,
感觉挺好,
俺可是一窍不痛的,
写了比楼主简单100倍的时钟
#include "stdio.h"
#include "conio.h"
#include "stdlib.h"
typedef struct
{
int hour;
int minute;
int second;
} mytime;
int main()
{
long one,two;
char ch;
mytime atime;
printf("Please input the time now:");
scanf("%d%*c%d%*c%d",&atime.hour,&atime.minute,&atime.second);
while(1)
{
if(atime.hour==24)
atime.hour=0;
if(atime.minute>59)
{
atime.minute%=60;
atime.hour++;
}
if(atime.second>59)
{
atime.second%=60;
atime.minute++;
}
one=clock();
do
{
two=clock();
}while(two-one<18); /*这个数随机器调*/
atime.second++;
if(kbhit())
{
ch=getch();
if(ch=='q')
break;
else
printf("time for now is %02d:%02d:%02d\n",atime.hour,atime.minute,atime.second);
}
}
return 0;
}
这个程序好象会出现2:30:60啊!