Если что инклюды поправь
Объяснение:
#include "pch.h"
#include <stdio.h>
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n, num;
int mas[10000];
cin >> n;
for (int i = 0; i < n; i++) {
mas[i] = INT32_MAX;
cin >> num;
int tmp = num;
while (tmp != 0) {
mas[i] = fmin(mas[i], tmp%10);
tmp /= 10;
}
cout << mas[i] << " ";
system("pause");
return 0;
Если что инклюды поправь
Объяснение:
#include "pch.h"
#include <stdio.h>
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n, num;
int mas[10000];
cin >> n;
for (int i = 0; i < n; i++) {
mas[i] = INT32_MAX;
cin >> num;
int tmp = num;
while (tmp != 0) {
mas[i] = fmin(mas[i], tmp%10);
tmp /= 10;
}
}
for (int i = 0; i < n; i++) {
cout << mas[i] << " ";
}
system("pause");
return 0;
}