herrDeng網內搜尋

自訂搜尋

Ads

2017年3月28日 星期二

Ex5. C++文字檔輸出






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

23 則留言:

B10333107 曾詠浩 提到...

#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;
}

B10333005 提到...

#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;
}

B10333064王韻菱 提到...

#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;
}

B10333027 毛冠霖 提到...

#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;
}

B10333106 劉郁芃 提到...

#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;
}

B10433038詹恭煒 提到...

#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;
}

B10433053謝肇安 提到...

#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;
}

B10333097 胡聖恩 提到...

#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;
}

b10333083,周琬芸 提到...

#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;
}

b10233032謝翔宇 提到...

#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;
}

B10333094張之銜 提到...

#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;
}

b10333080王育文 提到...

#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;
}

B1033306 提到...

#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;
}

B10333077潘家銘 提到...

#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;

}

B10333063羅胤銓 提到...

#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;
}

B10333079 葉禮魁 提到...

#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 ;

}

B10333055翁恩義 提到...

#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;
}

b10433156 提到...

# 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;

}

B10333086 陳晏堂 提到...

#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;
}

b10133187 楊鈞文 提到...

#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;

B10333072 黃玟茜 提到...

#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;
}

B10433193 林佩縈 提到...

#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;
}

B10333053 梁竣翔 提到...

#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;
}

Related Posts Plugin for WordPress, Blogger...

熱門文章