#include <bits/stdc.h>
using namespace std;const int N 102;// 求最大公约数
long long gcd(long long a, long long b) {if (a < b) swap(a, b);while (b ! 0) {long long temp b;b a % b;a temp;}return a;
}int main() {ios::sync_with_stdio(0), cin.tie(0…
在 C C C 中, s t r i n g string string 是标准库提供的一个类,用于处理字符串。它是基于模板的容器类,提供了许多成员函数和操作符,用于对字符串进行各种操作,比如插入、删除、查找、连接等。与 C C C 风格的字符串…