#include <iostream>
#include <cstring>
using namespace std;
int str(char S[128], char C[128]) {
int result = 0;
for (int i = 0; i < strlen(S); i++)
{
for (int j = 0; j < strlen(C); j++)
{
if (S[i] == C[j])
result++;
}
}
return result;
}
int main()
{
setlocale(LC_ALL, "rus");
char S[128]; cout << "Введите предложение => "; cin.getline(S, 128);
char C[128]; cout << "Введите набор символов => "; cin.getline(C, 128);
cout << str(S, C);
}
void str_func(char S[128], char C[128])
{
int result = 0;
for (int i = 0; i < strlen(S); i++)
{
for (int j = 0; j < strlen(C); j++)
{
if (S[i] == C[j])
result++;
}
}
cout << "Количество символов => " << result;
}
str_func("предложение", "набор символов");
<script>
$(function(){
$('#menu-top a').on('click', function(){
let url = $(this).attr('href');
$.ajax({
type: "POST",
url: url
}).done(function(data){
$("#content").html(data);
});
return false;
})
})
</script>
<form action="test.php" method="POST">