#include <bits/stdc++.h>
using namespace std;
long long a,b,c,A,B,count1=0,d,F[17],sum=0,min1=10000,minI;
int main()
{
for(int i=1;i<=10;i++){
F[i]=rand()%30;
if(F[i]>15){
F[i]=F[i]/3;
}
if(F[i]<min1){
min1=F[i];
minI=i;
sum+=F[i];
cout<<F[i]<<" ";
cout<<endl;
cout<<"Suma: "<<sum<<endl;
cout<<"minIndex: "<<minI<<endl;
return 0;
11 5 4 10 9 4 6 6 7 14
Suma: 76
minIndex: 3
Объяснение:
Тут и так всё понятно
var a, b, с: integer;
begin
write('Введите два числа: ');
readln(a, b);
if a < b then с := a + 1 else с := b + 1;
repeat с := с - 1
until (a mod с = 0) and (b mod с = 0);
write('NOD = ', с)
end.
//2. Алгоритм с вычитанием (цикл while)
var a, b: integer;
write('a = ');
readln(a);
write('b = ');
readln(b);
while a <> b do
if a > b then
a := a - b
else
b := b - a;
writeln('NOD = ', a);
#include <bits/stdc++.h>
using namespace std;
long long a,b,c,A,B,count1=0,d,F[17],sum=0,min1=10000,minI;
int main()
{
for(int i=1;i<=10;i++){
F[i]=rand()%30;
if(F[i]>15){
F[i]=F[i]/3;
}
if(F[i]<min1){
min1=F[i];
minI=i;
}
sum+=F[i];
cout<<F[i]<<" ";
}
cout<<endl;
cout<<"Suma: "<<sum<<endl;
cout<<"minIndex: "<<minI<<endl;
return 0;
}
11 5 4 10 9 4 6 6 7 14
Suma: 76
minIndex: 3
Объяснение:
Тут и так всё понятно
var a, b, с: integer;
begin
write('Введите два числа: ');
readln(a, b);
if a < b then с := a + 1 else с := b + 1;
repeat с := с - 1
until (a mod с = 0) and (b mod с = 0);
write('NOD = ', с)
end.
//2. Алгоритм с вычитанием (цикл while)
var a, b: integer;
begin
write('a = ');
readln(a);
write('b = ');
readln(b);
while a <> b do
if a > b then
a := a - b
else
b := b - a;
writeln('NOD = ', a);
end.