#include
#include
#include
using
namespace std;
intmain()
else
if(s[i]
>=
'a'&& s[i]
<=
'z')
}int
const a = v1.
size()
;for
(int n =
0; n < a /
2; n++)}
if(is_palindrome)
cout <<
"the string is a palindrome"
<< endl;
else
cout <<
"the string is not a palindrome"
<< endl;
return0;
}請輸入一組字串:
as,sa123
the string is a palindrome
c:\users\86178\source\repos\題3\debug\題3.exe (程序 7744
)已退出,**為 0。
要在除錯停止時自動關閉控制台,請啟用「工具」-
>「選項」-
>「除錯」-
>「除錯停止時自動關閉控制台」。
按任意鍵關閉此視窗.
..
第二次上機作業
已知乙個矩陣,儲存在乙個二維陣列中。將矩陣中和值為最大的那一行 元素與首行對換。include using namespace std void swap int a,int b intmain int max 0,t 0 for int i 0 i 3 i int sum 0 for int j ...
C 第二次作業的第三題
主函式 using system using system.collections.generic using system.linq using system.threading.tasks using system.windows.forms 主要實現功能的 using system using...
第二次上機作業(2020 12 5)
題目一 已知乙個矩陣,儲存在乙個二維陣列中。將矩陣中和值為最大的那一行 元素與首行對換。思路 先定義short型別smax並取最小值,對矩陣中每一行求和,將第一行的和值賦給smax,再對後面每一行求和,比較得出最大值,並得出最大值的行數row。最後利用for迴圈將和值最大的一行的每個元素與第一行互換...