プログラムの説明
iris.dataというファイルから1行ずつline変数に入れ、その文字列をstrtok関数で分割し、構造体の変数配列に格納するプログラムです。iris.dataの中身は下記の様な感じです。
5.1,3.5,1.4,0.2,Iris-setosa
4.9,3.0,1.4,0.2,Iris-setosa
4.7,3.2,1.3,0.2,Iris-setosa
4.6,3.1,1.5,0.2,Iris-setosa
5.0,3.6,1.4,0.2,Iris-setosa
5.4,3.9,1.7,0.4,Iris-setosa
4.6,3.4,1.4,0.3,Iris-setosa
5.0,3.4,1.5,0.2,Iris-setosa
4.4,2.9,1.4,0.2,Iris-setosa
4.9,3.1,1.5,0.1,Iris-setosa
5.4,3.7,1.5,0.2,Iris-setosa
4.8,3.4,1.6,0.2,Iris-setosa
4.8,3.0,1.4,0.1,Iris-setosa
4.3,3.0,1.1,0.1,Iris-setosa
5.8,4.0,1.2,0.2,Iris-setosa
5.7,4.4,1.5,0.4,Iris-setosa
5.4,3.9,1.3,0.4,Iris-setosa
5.1,3.5,1.4,0.3,Iris-setosa
5.7,3.8,1.7,0.3,Iris-setosa
5.1,3.8,1.5,0.3,Iris-setosa
5.4,3.4,1.7,0.2,Iris-setosa
5.1,3.7,1.5,0.4,Iris-setosa
4.6,3.6,1.0,0.2,Iris-setosa
質問内容
出力結果が
「data[0].class = Iris-setosa
同じ文字列です。」
となると思っていたのですが、
「data[0].class = Iris-setosa
違う文字列です。」
と出力されていました。
何故なのでしょうか?また、解決策を教えていただきたいです。
ソースコード
c
1#include <stdio.h> 2#include <stdlib.h> 3#include <string.h> 4 5 6typedef struct IRIS { 7 double sepal_length; 8 double sepal_width; 9 double petal_length; 10 double petal_width; 11 char class[100]; 12} iris; 13 14 15 16 17int main() { 18 iris data[150+1]; 19 FILE *fp; 20 char fname[] = "iris.data"; 21 char line[50]; 22 23 fp = fopen(fname, "r"); 24 if(fp == NULL) { 25 printf("ファイルを開けませんでした。\n"); 26 return -1; 27 } 28 29 for(int i = 0; i < 150; i++) { 30 char *ptr; 31 fgets(line, 50, fp); 32 ptr = strtok(line, ","); 33 data[i].sepal_length = atof(ptr); 34 ptr = strtok(NULL, ","); 35 data[i].sepal_width = atof(ptr); 36 ptr = strtok(NULL, ","); 37 data[i].petal_length = atof(ptr); 38 ptr = strtok(NULL, ","); 39 data[i].petal_width = atof(ptr); 40 ptr = strtok(NULL, ","); 41 strcpy(data[i].class, ptr); 42 } 43 44 printf("data[%d].class = %s\n", 0, data[0].class); 45 if(strcmp(data[0].class, "Iris-setosa") == 0) { 46 printf("同じ文字列です。\n"); 47 }else { 48 printf("違う文字列です.\n"); 49 } 50 51 52 53 54 55 return 0; 56}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/30 09:31