Сорян паскаль не знаю , могу скинуть на С++
Разбираешься в инфе , поймёшь
#include <iostream>
using namespace std ;
int main {
\\ не важно что выше
int num , k , o , s , l; \\ объявляем числа
l, o , s , k ,num = 0 ; \\ чтобы в компиле гадости не было
cin >> num >> k ; \\ вводим их c клавы
while (num >= 1) {
s = num ;
o = s%10 ;
if (o <= k){ // цикл на проверку условию задачи
l += 1 ;
}
num = num % 10 ;
cout << l ; // выводим ответ
\\ не важно что ниже
return 0 ;
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
const int n = 4;
int a;
int mas[n][n];
srand(time(NULL));
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
a = rand() % 11 - 5 ;
mas[i][j] = a;
cout.width(3);
cout <<mas[i][j] <<" ";
cout <<endl;
if (mas[i][j]<0){
mas[i][j]=mas[i][j]*mas[i][0];
return 0;
Сорян паскаль не знаю , могу скинуть на С++
Разбираешься в инфе , поймёшь
#include <iostream>
using namespace std ;
int main {
\\ не важно что выше
int num , k , o , s , l; \\ объявляем числа
l, o , s , k ,num = 0 ; \\ чтобы в компиле гадости не было
cin >> num >> k ; \\ вводим их c клавы
while (num >= 1) {
s = num ;
o = s%10 ;
if (o <= k){ // цикл на проверку условию задачи
l += 1 ;
}
num = num % 10 ;
}
cout << l ; // выводим ответ
\\ не важно что ниже
return 0 ;
}
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
const int n = 4;
int a;
int mas[n][n];
srand(time(NULL));
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
a = rand() % 11 - 5 ;
mas[i][j] = a;
cout.width(3);
cout <<mas[i][j] <<" ";
}
cout <<endl;
}
cout <<endl;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (mas[i][j]<0){
mas[i][j]=mas[i][j]*mas[i][0];
}
cout.width(3);
cout <<mas[i][j] <<" ";
}
cout <<endl;
}
return 0;
}