前提・実現したいこと
このプログラムを書いているmain.cと同じ階層にworkers.txtというファイルをつくっており、それを開きたいのですが、何度実行してもエラーになってしまいます。どうすれば開けるのでしょうか。
発生している問題・エラーメッセージ
Failed:Can't open workers.txt!(私がプログラム中で作ったメッセージ) No such file or directory(errnoで調べたときのメッセージ)
該当のソースコード
#include <stdio.h> #include <stdlib.h> #include <errno.h> #define NAME_LEN 20 typedef struct{ char name[NAME_LEN]; char surname[NAME_LEN]; float saraly; float score; }Workers; float compute_saraly(float sarary, float score); int main() { FILE *fp = NULL; fp = fopen("workers.txt", "r"); FILE *out_put = NULL; out_put = fopen("out_put.txt", "w"); printf("Tell me the number of workers.\n"); int k; scanf("%d", &k); Workers *data = malloc(k * sizeof(Workers)); if(fp == NULL){ printf("Failed:Can't open %s!\n", "workers.txt"); return 1; }else{ printf("Succeeded:%s is open!\n", "workers.txt"); } int person = 0; if(out_put == NULL){ printf("Failed:Can't open %s!\n", "out_put.txt"); return 1; }else{ for(int i = 0; i<k; i++){ if(fscanf(fp, "%s %s %f %f", data[person].name, data[person].surname, &data[person].saraly, &data[person].score) != 4){ printf("The number of elements is wrong!\n"); break; } person++; } for(int i = 0; i<person; i++){ data[i].saraly = compute_saraly(data[i].saraly, data[i].score); fprintf(out_put, "%-10s %-10s %5.1f %5.1f\n",data[i].name,data[i].surname, data[i].saraly, data[i].score); } fclose(fp); fclose(out_put); } free(data); return 0; } float compute_saraly(float sarary, float score){ if(score<=0){ return sarary*0.9; }else if(score == 1){ return sarary; }else{ return sarary*1.1; } }
試したこと
補足情報(FW/ツールのバージョンなど)
xcodeを使っています。
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。