Var a,b:integer;
beginwriteln('Введите 1 число');
readln(a);
writeln('Введите 2 число');
readln(b);
if a>=b then writeln('Наименьшее число равняется ',b)
else writeln('Наименьшее число равняется ',a);
<span>end.</span>
254000000 = 254 · 10⁶
254 = 0.254 · 1000 = 0.254 · 10³, тогда
254 · 10⁶ = 0.254 · 10⁶ · 10³ = 0.254 · 10⁹
<h2>Ответ</h2>
0.254 · 10⁹
ЭТАПРАЗРАБОТКИ КОМПЬЮТЕРНОЙ ПРОГРАММЫ В КОТОРОЙ УСТРАНЯЮТ ОШИБКИ
var x:integer;
begin
readln(x);
writeln(x div 1000,x mod 10);
end.
#include <iostream>
#include <time.h>
#include <vector>
#include <numeric>
#include <algorithm>
using namespace std;
int find_digital_root(int elem) {
vector<int> temp_vec;
int sum = 0;
while (elem != 0) {
temp_vec.push_back(elem % 10);
elem = elem / 10;
}
if (temp_vec.size() == 1) {
return temp_vec[0];
}
else {
sum = accumulate(temp_vec.begin(), temp_vec.end(), 0);
temp_vec.clear();
return find_digital_root(sum);
}
}
int main()
{
int temp = 0;
for (int i = 100; i <= 200; i++)
{
temp = find_digital_root(i);
if (temp == 1 || temp == 2 || temp == 3 || temp == 5 || temp == 7) {
cout << i << endl;
}
}
}