我一直想在一個txt文件中的矩陣輸入存儲陣列中,但它告訴我這一點: 這是代碼從文本文件中讀取和二維數組存儲
#include <stdio.h>
int main()
{
int c, i, j, row, col, nl, cr;
row = col = nl = cr = 0;
FILE *fp = fopen("g.txt", "r");
// Figure out how many rows and columns the text file has
while ((c = getc(fp)) != EOF)
{
if (c == '\n')
nl++;
if (c == '\r')
cr++;
col++;
if (c == '\n')
row++;
putchar(c);
}
col = (col - (nl + cr));
col = (int) (col/row);
// printf("\nnumber of rows is %d\n", row);
// read letters into array
char array[row][col];
if (fp)
{
for (;;)
{
c = getc(fp);
if (c == EOF)
{
break;
}
if (c != '\n' && c != '\r')
{
array[i][j] = c;
if (++j >= col)
{
j = 0;
if (++i >= row)
{
break;
}
}
}
}
fclose(fp);
}
for (i = 0; i < row; i++)
{
for (j = 0; j < col; j++)
{
putchar(array[i][j]);
}
putchar('\n');
}
return 0;
}
有人爲請有任何想法嗎? 爲例TXT文件:
255 50 9 50 1 50 50 1
50 255 50 50 50 50 50 50
50 50 255 50 50 50 50 50
8 50 50 255 50 50 50 50
50 50 50 50 255 50 50 50
50 50 50 50 50 255 50 50
1 50 50 50 50 50 255 50
2 50 50 50 50 50 50 255
我的計劃告訴我這一點:
255 50 9 50 1 50 50 1
50 255 50 50 50 50 50 50
50 50 255 50 50 50 50 50
8 50 50 255 50 50 50 50
50 50 50 50 255 50 50 50
50 50 50 50 50 255 50 50
1 50 50 50 50 50 255 50
2 50 50 50 50 50 50 255 $■(1gÍuáþ09■ ı¤ıu"ÒávD ê$[
► ð²( ♥ l ► ■
ê$[ ♥ l ²(O»ƒv[ 4■(Qõá
v♥ #õáv┬²║Oÿ|®v ñ|®ve┬ív
■( x■(ÿ|®v Ó²⌂ @■( áƒv╚♀[ L
■(w¯ƒv‼ ê■(I┴ávÿ|®v↓┴áv~²║O
Ó²⌂ \■(■ ─ (e┬ívÍ┬29►☺
輸入文件顯示它的好,但問題是陣列輸出,我不undrestand爲什麼告訴我這個caracters
其中是您的代碼中的二維數組? –
在一邊注意''double atof(const char * str);'是不需要的,因爲函數已經在stdlib.h中聲明瞭。您的代碼實際上不會使用我的編譯器中的該行進行編譯。 – jpw
雙數[100] [100]; – Butterflay