| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 745 人关注过本帖
标题:模拟磁盘寻道,图形显示问题
只看楼主 加入收藏
LC→雷
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2009-10-7
结帖率:100%
收藏
 问题点数:0 回复次数:1 
模拟磁盘寻道,图形显示问题
我们的操作系统的作业,模拟磁盘寻道,在显示器上画出一系列同心圆代表磁盘,用一个点代表磁头,用随机函数生成磁盘访问序列。但是我的图形重绘的时候不显示同心圆,麻烦大家帮我看下,谢谢了。
磁盘寻道 (2).rar (1.04 KB)
搜索更多相关主题的帖子: 图形 磁盘 模拟 
2010-05-12 22:50
LC→雷
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2009-10-7
收藏
得分:0 
#include <stdio.h>
#include <graphics.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include<conio.h>

void main()
{

    /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int midx, midy;
   int i=0,j,k;
   int radius=6;
   int array[50];

   /* initialize graphics, local variables */
   initgraph(&gdriver, &gmode, "");

   /* read result of initialization */
   errorcode = graphresult();
   if (errorcode != grOk)
   /* an error occurred */
   {
      printf("Graphics error: %s\n",
      grapherrormsg(errorcode));
      printf("Press any key to halt:");
      getch();
      exit(1);
   /* terminate with an error code */
   }
   midx = getmaxx() / 2;
   midy = getmaxy() / 2;
   setcolor(RED);

   /* Create random numbers */

  srand((unsigned)time(NULL));
  printf("Create random numbers!\n");
  for(j=0;j<=15;j++)
  {
  array[j]=rand()%41;
  printf("%d\n",array[j]);
  delay(90000);

  }

   for(k=0;k<=15;k++)
   {
      cleardevice();

       for(;i<=40;i++)
     {

      circle(midx,midy,radius);
      radius=radius+6;

      }

     putpixel(midx+(array[k]+1)*6, midy, GREEN);

     delay(900000);


   }









  /* clean up */
  getch();
  closegraph();
}


这是程序的源代码,圆显示完了就没有了啊/我想让他在寻道时显示出来圆啊
2010-05-15 10:25
快速回复:模拟磁盘寻道,图形显示问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025152 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved