Cannot compile the file "文件路径";no compile tool is associated with the file extension
这是什么问题啊,我只写了一个.txt文件的主程序,编译是发生上面的问题。程序如下请大家指教啊!
main()
{int i,j,n;
 float a[4][8]={{1,1/2,1/3,1/4,1,0,0,0},
                {1/2,1/3,1/4,1/5,0,1,0,0},
                {1/3,1/4,1/5,1/6,0,0,1,0},
                {1/4,1/5,1/6,1/7,0,0,0,1}};
 printf("Aˉ1 is :");
 for(i=0;i<=3;i++)
  {for(j=i;j<=3;j++) 
    {a[i][j]=a[i][j]/a[i][i];}                         
   n=i;
   for(n=0;n<=3;n++)                                  
    {if(i!=n) for(j=i;j<=3;j++) 
             {a[n][j]=a[n][j]-a[n][i]*a[i][j];}
}
   }
  for(i=0;i<=3;i++)                                   
    {for(j=4;i<=7;j++) printf("%f",a[i][j]);
     printf("\n");
    }

到底是什么问题啊?