標題:
函式的建立與執行 (五)
[打印本頁]
作者:
鄭繼威
時間:
2022-5-27 14:25
標題:
函式的建立與執行 (五)
本帖最後由 鄭繼威 於 2022-6-18 11:52 編輯
類
函式的建立與執行 (四)
只是四是可以讀整行的(getline),這個單純就讀一個單字
cin>>str; //(讀到空格就斷了) //ex:只能讀單字
getline(cin,str); //(讀整行) //ex:可以讀單字、句子
複製代碼
[attach]13089[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-5-28 08:59
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-5-28 09:50
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-5-28 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-5-28 11:58
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2022-6-11 10:53
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-6-11 11:09
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-6-11 11:26
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-6-18 10:14
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-6-18 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-6-18 11:50
#include<iostream>
#include<cstdlib>
using namespace std;
void count(int n,string s)
{
for(int i=1;i<=n;i++){
cout<<"第"<<i<<"次的"<<s<<endl;
}
}
void print(string s){
int n;
cout<<"你要幾次?";
cin>>n;
count(n,s);
}
int main()
{
string str;
cout<<"你要印什麼?";
cin>>str;
print(str);
system("pause");
return 0;
}
複製代碼
作者:
田家齊
時間:
2022-6-18 11:52
#include<iostream>
#include<cstdlib>
using namespace std;
void printer(string str,int count)
{
for(int i=1;i<=count;i++)
cout<<"第"<<i<<"次的"<<str<<endl;
}
int main()
{
cout<<"你要印甚麼:";
string str;
getline(cin,str);
cout<<"幾次:";
int count;
cin>>count;
printer(str,count);
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2