摘要:
program volume_area real :: r,h,v,s,pi pi=3.1415926 print *,'input radius r and height h?' read *,r,h v=r*r*h/3*pi s=pi*r*sqrt(r**2+h**2)+pi*r**2 prin 阅读全文
摘要:
int n1; int n2; int n3; printf("n1 address is %p\n",&n1); printf("n2 address is %p\n",&n2); printf("n3 address is %p\n",&n3); n1 address is 0xbffdd468 阅读全文