欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mac下使用xcode读取txt文件问题

程序员文章站 2022-04-12 21:43:19
...

写oj题时手动输入样例太麻烦了…于是直接读取txt文件中的样例

步骤:

1.新建txt文件

2种方法
1.1 使用文本编辑器
打开文本编辑器->shift + Command + T 同时按->输入内容->保存

1.2 使用终端
打开终端,输入

$ vi xx.txt

按i键 输入内容->ESC键退出编辑->输入 :wq 保存txt文件

2.将txt文件导入Debug目录下

右击Products里面的可执行文件->Show in Finder->将txt文件拖到该文件下

mac下使用xcode读取txt文件问题

mac下使用xcode读取txt文件问题

3.编写程序,读取txt文件

使用freopen读取txt文件
示例代码

#include <cstdio>
#include <fstream>
#include <iostream>
using namespace std;

int main(){
    freopen("test.txt", "r", stdin);
    int a;
    scanf("%d", &a);
    printf("%d\n", a);
    return 0;
}

测试
mac下使用xcode读取txt文件问题