为什么这个程序运行出错?
#include "stdafx.h"#include "stdafx.h"
#include <stdio.h>
#define a 60
int main(void)
{
int b, c, d;
scanf("%ddsajdjsakldjkl", b);
while(b>0)
{
c = b / a;
d = b / a;
printf("%d %d %d",b, c, d);
scanf("%d", b);
}
getchar();
return 0;
}