2017-09-14 224 views
-3

我有問題invalid conversion from 'char*' to 'char' [-fpermissive]。 在這裏,我將數據轉移一位數。char從'char *'無效轉換爲'char'[-fpermissive]

char text[]="5052.4318" ,temp; 

當我寫這樣的,好了,這是工作,但我需要從array[3]讀取數據。 我該如何處理這個問題?

#include <iostream> 
#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 

int main() 
{ 
    char *array[3]; 

    array[3]="5052.4318"; 
    char text[]={array[3]} ,temp; 
    int text_len = strlen (text),i; 
    for (i =0; i <=text_len - 1; i++) 
    { 
     if (text[i] == '.') 
     { 
       temp = text[i-1]; 
       text[i-1] = text[i]; 
       text[i] = temp; 
     } 
    } 

    printf ("%s\n", text); 
    return 0; 
} 

工作

#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 

int main (void) { 
    char *array[1] = {"5052.4318"}; 
    size_t text_len = strlen(array[0]); 
    char text[text_len + 1], temp; 
    int i; 
    strcpy(text, array[0]); 
    for (i=0; i <=text_len - 1; i++){ 
    if (text[i] == '.') { 
     temp = text[i-1]; 
     text[i-1] = text[i]; 
     text[i] = temp; 
    } 
    } 

    printf ("%s\n", text); 
} 

在這裏我想讀取GPS數據,並將這些數據是GPRMC所以,首先我需要分析這些數據必須轉換到谷歌地圖格式(緯度需要經度)之後。

$GPRMC,093612.000,A,5052.43525,N,00440.11204,E,0.0,0.0,130917,,,A*6C 

5052.43525是緯度值。首先,我需要移動這樣的數據,例如50.5243525。再加上>>除數60 => 52.43525/60 = 0.87392083。 所以結果應該是50.87392083。另一個問題,我不應該使用atof命令字符串浮動值。因爲我正在使用Coocox並且不能在Debug中工作。所以我需要使用null終端。我正在分享我正在執行的代碼。

#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 
int main() 
{ 
//char buf[] 
="$GPRMC,121212,A,4807.038,N,01131.000,E,022.4,084.4,030611,003.1,W*6A"; 

char T[100]; 
sprintf(T, 
"%s","$GPRMC,093612.000,A,5052.43525,N,00440.11204,E,0.0,0.0,130917,,,A*6C"); 
printf(T); 
char *buf[]={T}; 
int i = 0; 
char *p = strtok (*buf, ","); 
char *array[12]; 

while (p !=0) 
{ 
    array[i++] = p; 
    p = strtok (0, ","); 

} 

for (i = 0; i < 11; ++i) { 
array[i]; 
printf("%s\n",array[i]); 
} 
//char *array[3] = {"5052.4318"}; 
size_t text_len = strlen(array[3]); 
char text[text_len +1], temp; 
int i1; 
    strcpy(text, array[3]); 
for (i1 =0; i1 <=text_len - 1; i1++) 
{ 
    if (text[i1] == '.') 
    { 
      temp = text[i1-1]; 
      text[i1-1] = text[i1]; 
      text[i1] = temp; 
    } 
} 
    for (i1 =0; i1 <=text_len - 1; i1++) 
{ 
    if (text[i1] == '.') 
    { 
      temp = text[i1-1]; 
      text[i1-1] = text[i1]; 
      text[i1] = temp; 
    } 
} 
char *buf1[]={text}; 
int i3 = 0; 
char *p1 = strtok (*buf1, "."); 
char *array1[2]; 

    while (p1 !=0) 
    { 
    array1[i3++] = p1; 
    p1 = strtok (0, "."); 

} 

for (i3 = 0; i3 < 2; ++i3) { 
array1[i3]; 
} double d; 
float m; 
int k=0; 

d= (atof(array1[1])/6000); 
char s[1]= {d}; 
m=(atof(array1[0])); 
printf("%f\n",m); 
printf("%lf\n",d); 


return 0; 

} 

結果應該是50.87392083。 我還沒有完成。

感謝

+6

我很驚訝這是您顯示的代碼唯一的問題。數組初始值設定項必須是編譯時常量。你不能使用運行時變量來初始化一個數組(就像你使用'text'一樣)。 –

+3

此外,當你做'array [3] =「5052.4318」'你正在索引*出界*!數組中的最後一個索引是'2'。 –

+2

'array'是一個指針數組,'array [3]'超出了界限。你也不能把''5052.4318「'分配給'char *',你應該用'malloc'和'strcpy'來代替。 – Groo

回答

0

我不能完全肯定你想什麼來實現,但也存在一些問題與您的代碼的第一部分。你的初始化行並不是真的正確。

我認爲你試圖「除以10」你的字符串。保持你的算法,我已經修復了一些問題,讓它編譯。

// #include <iostream> // This is C not C++. Also you include stdio.h... 
#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 

int main() 
{ 
    char array[] = "5052.4318"; // This initialization 
           // one of your errors 
    char * text = array + 3; // I don't know why you are pointing 
          // fourth element of the array, but you may do 
          // in this way 

    // Let's say I prefer to start from the starting of 
    // the array 
    text = array; 

    printf ("%s\n", text); 

    int text_len = strlen(text); 
    for (int i = 1; i <= text_len - 1; i++) { // You will have some problem 
               // if you start from 0... 
     if (text[i] == '.') { 
     char temp; // temp is used only here, so let's define it in the 
        // only scope that needs it. 
     temp = text[i - 1]; // This -1 is the reason why you may start 
          // the for from 1, instead of 0. 
     text[i - 1] = text[i]; 
     text[i] = temp; 
     } 
    } 

    printf ("%s\n", text); 
    return 0; 
} 

它打印出:

5052.4318 
505.24318 

這是你想要達到什麼樣的?

for從1開始處理像".1234"這樣的字符串。

另外:-fpermissive是一個控制C++編譯器的「方言」的標誌。這不是您在編譯C時看到的內容。由於您包含iostream,因此編譯器會自動切換到C++編譯器。這件事你一定要小心。

0
#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 

int main() 
{ 
    char text[30]="5052.4318",temp; 
    int text_len = strlen (text),i; 
    //printf("%s\n%d\n",text,text_len); 
    for (i =0; i <=text_len - 1; i++) 
    { 
     if (text[i] == '.') 
     { 
       temp = text[i-1]; 
       text[i-1] = text[i]; 
       text[i] = temp; 
     } 
    } 

    printf ("%s\n", text); 
    return 0; 
} 

您不需要使用額外的字符數組來實現所需的結果。

相關問題