網頁

2017年3月28日 星期二

Ex5. C++文字檔輸出






格式為name, age, height, weight
共十筆資料

23 則留言:

  1. B10333107 曾詠浩2017年3月28日 上午11:39

    #include <fstream>
    #include <cstdlib>
    #include <iostream>
    #include <string>
    using namespace std;
    int main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    ff<<"姓名,年齡,身高,體重 \n";
    cout<<"姓名─年齡─身高─體重 \n";
    for(int a=1 ; a<11; a++)
    {
    cout<<"第"<<a<<"資料 \n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("pause");
    return 0;
    }

    回覆刪除
  2. #include <iostream>
    #include <fstream>
    #include <cstdlib>
    #include <string>
    using namespace std;

    int main ()
    {
    string x;
    fstream ff("text.csv",ios::out);
    cout<<"格式為name,age,height,weight\n";
    ff<<"name,age,height,weight\n";
    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i+1<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("pause");
    return 0;
    }

    回覆刪除
  3. #include <iostream>
    #include <fstream>
    #include <cstdlib>
    using namespace std;
    int main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    cout<<"格式為name,age,height,weight\n";
    ff<<"name,age,height,weight\n";
    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  4. B10333027 毛冠霖2017年3月28日 上午11:42

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

    int main ()
    {
    string x;
    fstream ff("text.csv",ios ::out);
    cout <<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=0; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  5. B10333106 劉郁芃2017年3月28日 上午11:43

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

    int main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    cout<<"格式為name, age, height, weitht\n";
    ff<<"name, age, height, weight\n";
    for(int i=0; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("typ test.csv");
    return 0;
    }

    回覆刪除
  6. #include <fstream>
    #include <iostream>
    #include <cstdlib>
    using namespace std;

    int main ()
    {
    string x;
    fstream ff("text.csv",ios ::out);
    cout <<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=0; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  7. #include <fstream>
    #include <iostream>
    #include <cstdlib>
    using namespace std;

    int main ()
    {
    string x;
    fstream ff("text.csv",ios ::out);
    cout <<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=0; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  8. B10333097 胡聖恩2017年3月28日 上午11:46

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

    int main()
    {
    string x;
    fstream ff("test.csv", ios::out);
    cout<<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=0 ; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  9. b10333083,周琬芸2017年3月28日 上午11:46

    #include<iostream>
    #include<fstream>
    using namespace std;
    int main()
    {
    string x;
    fstream ff("test.csv", ios::out);
    cout<<"格式為姓名,年齡,身高,體重,怪僻 \n ";
    ff<<"name,age,height,weight,? \n " ;
    for(int i=1;i<=10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff << x << endl;

    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  10. #include<iostream>
    #include<fstream>
    using namespace std;

    int main()
    {
    string xi
    fstream ff("test.csv", ios::out);
    cout<<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=0; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin, x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  11. #include <fstream>
    #include <iostream>
    #include <cstdlib>
    using namespace std;

    int main(int argc, char** argv) {

    string x;
    fstream ff("test.csv", ios ::out);
    cout<<"格式為name, age, height, weight\n";
    ff<<"name,age ,height ,weight ? \n";
    for(int i=0; i<10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  12. #include <iostream>
    #include <fstream>
    #include <cstdlib>

    using namespace std;


    int main() {
    string x;
    fstream ff("test1.csv",ios::out);

    cout<<"姓名,年齡,身高,體重"<<endl;
    ff<<"name,age,height,weight\n";

    for(int i=1;i<11;i++){

    cout<<"輸入第"<<i<<"筆資料"<<endl;
    getline(cin,x);
    ff<<x<<endl;

    }


    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  13. #include<fstream>
    #include<iostream>
    #include<cstdlib>
    using namespace std;
    main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    cout<<"格視為name, age, height,weight\n";
    ff<<"name, age, height,weight\n";
    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  14. #include <iostream>
    #include <fstream>
    #include <cstdlib>
    using namespace std;
    int main ()
    {
    string x;
    fstream ff ("text.csv",ios::out);
    cout<<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=0; i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;

    }
    ff.close();
    system("type text.csv");
    return 0;

    }

    回覆刪除
  15. #include<fstream>
    #include<iostream>
    #include<cstdlib>
    using namespace std;
    main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    cout<<"格視為name, age, height,weight\n";
    ff<<"name, age, height,weight\n";
    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;
    }

    回覆刪除
  16. B10333079 葉禮魁2017年3月28日 上午11:49

    #include<fstream>
    #include<iostream>
    #include<cstdlib>
    using namespace std;
    int main()
    {
    string x;
    fstream GG("text.csv",ios::out);
    cout<<"請依照姓名,年齡,身高,體重\n";
    GG<<"name,age,height,body\n";

    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆"<<"姓名,年齡,身高,體重"<<endl;
    getline(cin,x);
    GG<<x<<endl;

    }

    GG.close();
    system("sype text,csv");
    return 0 ;

    }

    回覆刪除
  17. #include <iostream>
    #include <fstream>
    #include <cstdlib>
    #include <string>
    using namespace std;

    int main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    for(int a=0; a<11; a++)
    {
    for(int b=0; b<1; b++)
    {
    cout<<"Input string:";
    getline(cin,x);
    ff<<x<<endl;
    }
    }
    ff.close();
    system("pause");
    return 0;
    }

    回覆刪除
  18. # include <fstream>
    # include <iostream>
    # include <cstdlib>

    using namespace std;

    int main()
    {

    string x;
    fstream ff("test.csv",ios::out);
    cout<<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n ";
    for(int a=0; a<10; a++)
    {
    cout<<"輸入第"<<a<<"筆資料\n";
    getline(cin, x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test.csv");
    return 0;

    }

    回覆刪除
  19. B10333086 陳晏堂2017年3月28日 上午11:50

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

    int main()
    {
    string x;
    fstream ff("test1.csv", ios::out);
    cout<<"格式為name, age, height, weight\n";
    ff<<"name, age, height, weight\n";
    for(int i=1; i<=10; i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("type test1.csv");
    return 0;
    }

    回覆刪除
  20. b10133187 楊鈞文2017年3月28日 上午11:51

    #include
    #include
    #include
    using namespace std;
    int main()
    {
    string x;
    fstream ff("test.csv,ios::out");
    cout<"格式為name,age,height,weight\n";
    ff<<"name,age,hight,weight\n";
    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,x);
    ff<<x<<endl;
    }
    ff.close();
    system("typpe test.csv");
    return 0;

    回覆刪除
  21. B10333072 黃玟茜2017年3月28日 上午11:51

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

    int main()
    {
    string X;
    fstream ff("0328.csv",ios::out);
    cout<<"格式為姓名,年齡,身高,體重\n";
    ff<<"姓名,年齡,身高,體重\n";
    for(int i=0;i<10;i++)
    {
    cout<<"輸入第"<<i<<"筆資料\n";
    getline(cin,X);
    ff<<X<<endl;
    }
    ff.close();
    system("type 0328.csv");
    return 0;
    }

    回覆刪除
  22. B10433193 林佩縈2017年3月28日 上午11:51

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

    /* run this program using the console pauser or add your own getch, system("pause") or input loop */

    int main(int argc, char** argv) {
    fstream ff("test.txt", ios::out);
    ff<<"hello, are, you, ? \n";
    ff.close();
    system("type test.txt");
    return 0;
    }

    回覆刪除
  23. B10333053 梁竣翔2017年6月20日 上午10:35

    #include
    #include
    #include
    #include
    using namespace std;

    int main()
    {
    string x;
    fstream ff("test.csv",ios::out);
    for(int a=0; a<11; a++)
    {
    for(int b=0; b<1; b++)
    {
    cout<<"Input string:";
    getline(cin,x);
    ff<<x<<endl;
    }
    }
    ff.close();
    system("pause");
    return 0;
    }

    回覆刪除

HTML 編輯器