#include <iostream>
#include <vector>
using namespace std;
void solve(){
int n,m;
cin >> n >> m;
vector<vector<char>> a(n, vector<char>(m));
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
cin >> a[i][j];
int i = 0,ans = -1;
while(i < n){
int cnt = 1,j = 1;
while(a[i][j] == a[i][j-1] && j < m){
cnt++;
j++;
}
if(cnt == m)
ans = i;
i++;
}
if(ans == -1)
cout << "No solution";
else
cout << ans + 1;
}
signed main(){
solve();
}
Поделитесь своими знаниями, ответьте на вопрос:
С++ посчитать функцию у=3*х – х2, если х кратно 3, и функцию у= 2*х-10, если х кратно 5. на промежутке от 5 до 50. шаг +1. вывести на печать хi и уi
using namespace std;
int main()
{
for(int i = 0; i < 40; i++)
cout <<"_";
cout <<"\n";
for(int x = 5; x < 51; x++)
{
if (x % 3 == 0)
{
int y = x*(3-x);
cout <<"x = "<<x<<" y = "<<y;
if (x < 10) cout <<" ";
if (y > -1000)
{
cout <<" ";
if (y > -100)
{
cout <<" ";
if (y > -10) cout <<" ";
}
}
cout <<" ";
if (x % 5 != 0) cout <<"|\n";
}
if (x % 5 == 0)
{
if (x % 3 != 0) cout <<" ";
int y = 2*(x-5);
cout <<"| x = "<<x<<" y = "<<y<<"\n";
}
}
return 0;
}