コンテンツへ
#1
投稿記事 by haaazime » 9年前
コード:
#include <iostream> #include <cstdlib> #include <string> #include <fstream> using namespace std; int main(int argc, char const *argv[]){ ifstream ifs(argv[1]); string s; while(getline(ifs, s)){ cout << s << endl; } return 0; }
#2
投稿記事 by みけCAT » 9年前
#3
“C言語何でも質問掲示板” へ戻る