วันพุธที่ 16 พฤศจิกายน พ.ศ. 2559

C++ แสดงข้อความเยื้องลงมาทีละ 1 ช่อง แล้วให้ทำย้อนกลับ


string str;
cout << "Enter String : ";
cin >> str;
for (int i = 0; i < str.length(); i++)
{
for (int j = 0; j < i; j++)
{
cout << "-";
}
cout << str[i];
cout << endl;
}
for (int i = str.length() - 1; i >= 0; i--)
{
for (int j = 0; j < i; j++)
{
cout << "-";
}
cout << str[i];
cout << endl;
}


ไม่มีความคิดเห็น:

แสดงความคิดเห็น