#include
#include
#include
int main()
{
FILE *fp = fopen("loss.txt", "w");
if (fp == NULL){
printf("Failed to open file");
return 0;
}
double i, y;
for (i = 0, y = 0; i < 100; i += 0.5){
fprintf(fp, "%f\t", i);
y = sin(i);
fprintf(fp, "%f\n", y);
}
fclose(fp);
//FILE *fpread = fopen("loss.txt", "r");
//if (fpread == NULL)
//{
// printf("Failed to open file ");
// return 0;
//}
int a[10] = { 0 };
//int *a = new int[10];
//for (int i = 0; i < 10; i++)
//{
// fscanf(fpread, "%d", &a[i]);
// printf("%d ", a[i]);
//}
//fclose(fpread);
//system("pause");
}
真正打开文件的为fopen函数,需要的前提是txt文件放到工程文件路径之下,否则无法识别,同时打开待读取文件 fname = "123.txt"
#include
#include// 为了使用exit()
int main()
{
int ch;//getc的返回值是整数
FILE *fp;//文件指针
char fname[50]; // 储存文件名
// printf("Enter the name of the file: ");
// scanf("%s",fname);
fp = fopen("123.txt","r"); // 打开待读取文件 fname = "123.txt"
if (fp == NULL) // 如果失败
{
printf("Failed to open file. Bye\n");
exit(1); //退出程序
}
// getc(fp)从打开的文件中获取一个字符
while((ch=getc(fp))!=EOF)
putchar(ch);
fclose(fp);// 关闭文件
return 0;
}
运行后代码 如下 :
全部0条评论
快来发表一下你的评论吧 !