看看我的程序哪里出的问题?
#include <conio.h>
#include <stdio.h>
#include <graphics.h>
main()
{
int i;
float a,b,d;
char *c[]={"Please input the sum of quantity:", "Please input interfior:", "count"};
textbackground(0); /* 设置屏幕背景色 */
clrscr(); /* 清除文本屏幕 */
for(i=0; i<3; i++)
{
textbackground(i+1);
window(15+15*i, 10, 25+15*i, 20); /* 定义文本窗口 */
clrscr(); /* 清除窗口 */
cprintf("%s", c[i]);
}
window(15,10,25,20);
gotoxy(1, 4);
scanf("%f",&a);
window(30,10,40,20);
gotoxy(1, 4);
scanf("%f",&b);
d=b/a;
window(45,10,55,20);
gotoxy(1, 4);
printf("%f",&d);
getch();
}
这里的d为何没有传过来?