#include "stdafx.h"
#include "math.h"
int main()
{
int i, i_, k, n, iter;
double a[11], b[11], c[11], dn, dr, ds, r, s, rt, zz;
double error=0.0001;
while(1)
{
for (i=0;i<10; i++) 여기서 for문으로 배열 a를 모두 0으로 채웠구요
{
a[i] = 0;
b[i] = 0;
c[i] = 0;
}
printf("다항식의 차수를 입력하시오.");
scanf ("%d", &n);
for (i=0;i<n; i++)
{
printf("%d차 항의 계수를 입력하시오." , i);
scanf ("%f" , &a[i]); 여기서 scanf를 이용해서 배열 a를 다른 수들로 채웠습니다
printf("a[%d] = %f\n" , i,a[i]);
그럼 이 printf에선 새로 입력된 수들이 출력될거라고 생각했는데
그냥 0만 출력 됩니다ㅜㅜ
}