herrDeng網內搜尋

自訂搜尋

Ads

2017年3月21日 星期二

Ex4 C++輸入輸出練習

輸入某一長度字串,如
"how are u"

輸出為:
how are u
 ow are u
  w are u
    are u
    are u
     re u
      e u
        u
        u

28 則留言:

B10333070 徐承瑋 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Input a String:" ;
getline(cin, x);
int n=1;
cout<<setw(n)<<x<<endl;
int len=x.length();

for (int i=1;i<len;i++)
{
string y="";
for (int j=i;j<len;j++)
y+=x[j];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

B10333064王韻菱 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Input a string:";
getline(cin,x);
int n=10;
cout<<setw(n)<<x<<endl;
int len=x.length();
for(int j=0;j<len;j++)
{
string y="";
for(int i=j;i<len;i++)
y+=x[i];
cout<<setw(n)<<y<<endl;
}
system("Pause");
return 0;
}

B10333106 劉郁芃 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0;
}

B10333063 羅胤銓 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Enter:";
getline(cin, x);
int len=x.length();
for(int i=0; i<len; i++)
{
string y="";
for(int j=i;j<len; j++)
y+=x[j];
cout<<setw(len)<<y<<endl;
}

system("Pause");
return 0;
}

B10333005陳於農 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Input a string:";
getline(cin,x);
int n=x.length();
int len=x.length();
for(int i=0;i<len;i++){
string y="";
for(int j=i;j<len;j++){
y+=x[j];
}
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0;
}

B10333086 陳晏堂 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test......");
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int j=0;j<len; j++)
{
string y="";
for(int i=j;i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0;
}

B10333027 毛冠霖 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Input a string";
getline(cin, x);
int n=x.length();
int len=x.length();

for(int i=0;i<len;i++){
string y="";
for(int j=i;j<len; j++){
y+=x[j];
}
cout<<setw(len)<<y<<endl;
}


system("Pause");
return 0;
}

B10333097胡聖恩 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test...... ");
cout<<"Input a string:";
getline(cin, x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;

}

B10433156 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{

string x;
sytem("echo test test......");
cout<<"Input a string:";
getling(cin, x);
int len=x.length();
for (int j=0; j<len; j++)
{
string y="";
for(int i=2; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0;

}

b10333083周琬芸 提到...

#include<iostream>
#include<cstdlib>
#include<string>
#include<iomanip>
using namespace std;
int main()
{

string x;
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int j=0;j<len;j++)
{
string y="";
for(int i=j;i<len;i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

B10333107-曾詠浩 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int i=0 ; i<len; i++)
{
string y="";
for(int j=i ;j<len;j++)
y+=x[j];
cout<<y<<setw(len)<<endl;
}
system("Pause");
return 0;
}

B10333094張之銜 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;

cout<<"Input a string:";
getline(cin, x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

b10233032謝翔宇 提到...

#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test.....");
cout<<"Input a string:";
getline(cin, x);
int len=x.length();
for (int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

b10333080王育文 提到...

#include
#include
#include
#include
using namespace std;
int main() {
string x;
cout<<"Input a string:";
getline(cin,x);
int n=9;
int len=x.length();

for(int j=0;j

B10333055翁恩義 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test..... ");
cout<<"Input a string:";
getline(cin, x);
int len=x.length();

for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

b10233032謝翔宇 提到...

#include
#include
#include
#include
using namespace std;
int main()
{
string x;
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int i=0 ; i<len; i++)
{
string y="";
for(int j=i ;j<len;j++)
y+=x[j];
cout<<y<<setw(len)<<endl;
}
system("Pause");
return 0;
}

B10333072 黃玟茜 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test......");
cout << "Input a string:";
getline(cin,x);
int len=x.length();
for (int j=0; j<len; j++)
{
string y="";
for (int i=j; i<len; i++)
y+=x[i];
cout << setw(len) << y << endl;
}
system("Pause");
return 0;
}

b10333080王育文 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main() {
string x;
cout<<"Input a string:";
getline(cin,x);
int n=9;
int len=x.length();

for(int j=0;j<len;j++){

string y="";
for(int i=j;i<len;i++)
y+=x[i];
cout<<setw(n)<<y<<endl;
}

system("Pause");
return 0;
}

B10333077 潘家銘 提到...

#include<iostream>
#include<cstdlib>
#include<string>
#include<iomanip>
using namespace std;
int main()
{
string x;
system("echo test test.....");
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for (int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0 ;

}

B10333053 梁竣翔 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test..... ");
cout<<"Input a string:";
getline(cin, x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0 ;
}

B10333079 葉禮魁 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>

using namespace std;

int main(){
string x;
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int z=0 ; z<len ; z++){
string y="";
for(int i=z ; i<=len ; i++)

y+=x[i];
cout<<setw(len)<<y<<endl;

}
system("Pause");
return 0;
}

B10433053謝肇安 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test..... ");
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

B10433038詹恭煒 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test..... ");
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

B10433024陳錡諹 提到...

#include <iostream>
#include <cstdlib>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string x;
system("echo test test..... ");
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for(int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("Pause");
return 0;
}

B10333077 潘家銘 提到...

#include<iostream>
#include<cstdlib>
#include<string>
#include<iomanip>
using namespace std;
int main()
{
string x;
system("echo test test.....");
cout<<"Input a string:";
getline(cin,x);
int len=x.length();
for (int j=0; j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}
system("pause");
return 0 ;

}

b10133187 楊鈞文 提到...

#include
#include
#include
#include
using namespace std;
int main()
{
string x;
system("echo test test.....");
cout<<"Input a string";
getline(cin,x);
int len=x.length();
for(int j=0;j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}


system("pause");
return 0;
}

b10133187 楊鈞文 提到...

#include
#include
#include
#include
using namespace std;
int main()
{
string x;
system("echo test test.....");
cout<<"Input a string";
getline(cin,x);
int len=x.length();
for(int j=0;j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}


system("pause");
return 0;
}

B10333053 梁竣翔 提到...

#include
#include
#include
#include
using namespace std;
int main()
{
string x;
system("echo test test.....");
cout<<"Input a string";
getline(cin,x);
int len=x.length();
for(int j=0;j<len; j++)
{
string y="";
for(int i=j; i<len; i++)
y+=x[i];
cout<<setw(len)<<y<<endl;
}


system("pause");
return 0;
}

Related Posts Plugin for WordPress, Blogger...

熱門文章