- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
计算物理程序改动
第一题:程序改动page6
#include graphics.h
#include stdlib.h
#include stdio.h
#include math.h
main()
{
int graphdrv=VGA;
int graphmode=VGAHI;
int a=150,t=0,x,u=20
,N=1000,y=200,r=4,i;
float w=0.05,f=0.8;
initgraph(graphdrv,graphmode,\\ tc \\ bgi);
for (t=0;t=N;t++)
{
for(i=0;i=100;i++) line(u,y,100,y);
x=a*cos(w*t+f)+250;
cleardevice();
line(u,y-50,u,y+50);
for(i=0;i=4;i++)
{
line(u,y+10*i,u-10,y+10*i+10);
line(u,y-10*i-10,u-10,y-10*i);
}
line(u,y,x,y);
line(u,y+1,x,y+1);
line(u,y-1,x,y-1);
circle(x,y,r-1);
circle(x,y,r-2);
circle(x,y,r);
}
while(!kbhit());
closegraph();
}
第二题:程序改page12
#include graphics.h
#include stdlib.h
#include stdio.h
#include math.h
main()
{int graphdrv=DETECT;
int graphmode;
int a=30,t=0,N=200;
int y0[638],y10[638],y20[638],y1[638],y2[638],y[638],i,x;
float w=0.2,v=3.64,f=0;
initgraph(graphdrv,graphmode,\\tc \\bgi);
y10[0]=a*cos(w*(t-1/v)+f)+80;
y20[0]=a*cos(w*(t+1/v)+f)+80;
y0[0]=y10[0]+y20[0]+300;
for(t=0;t=N;t++)
{
for(x=1;x=639;x++)
{
y1[x-1]=a*cos(w*(t-x/v)+f)+80;
y2[x-1]=a*cos(w*(t+x/v)+f)+80;
y[x-1]=y1[x-1]+y2[x-1]+140;
y10[x]=y1[x-1];
y20[x]=y2[x-1];
y0[x]=y[x-1];
}
delay(5000);
cleardevice();
for(i=0;i=3;i++)
{
line(i*200,0,i*200,479);
line(0,80,639,80);
line(0,300,639,300);
}
for(x=1;x=639;x++)
{
line(x-1,y10[x-1],x,y1[x-1]);
line(x-1,y20[x-1],x,y2[x-1]);
line(x-1,y0[x-1],x,y[x-1]);
}
}
while(!kbhit());
closegraph();
}
Page128:#includegraphics.h
#includestdlib.h
#includemath.h
main()
{
float r0=20,r,Dr,D0,a=0.529,o,x,y,s=11.75,pi=3.141593;
int i,drv=0,mode;
randomize();
initgraph(drv,mode,\\tc\\bgi);
setcolor(GREEN);
circle(319,239,s*r0);
setcolor(WHITE); settextstyle(1,0,1);
outtextxy(100,10,H-3s);
setcolor(YELLOW);
outtextxy(440,10,Anykey to exit);
while(!kbhit())
{
r=r0*random(32767)/32767.0;
Dr=4/3/a/a/a*pow((r/81
文档评论(0)