from random import*
def kratnye(chuslo,spysok,chusla,sluchay):
while(chuslo!=0):
chuslo=int(input("Введите число"))
if(chuslo>0):
spysok.append(chuslo)
else:
if(sluchay<5):
for x in spysok:
if(x/5 in range(1,1000,1)):
chusla=chusla+1
print("Чисел, которые делятся на 5:",chusla-1)
elif(sluchay>5):
if(x/9 in range(1,1000,1)):
continue
print("Чисел, которые делятся на 9:",chusla-1)
a=int(input("Напишите 1 чтобы начать, 0 чтобы закончить программу"))
b=[]
c=1
d=randint(1,11)
kratnye(a,b,c,d)
using std::cout;
using std::cin;
using std::endl;
#include <cstdlib>
using std::rand;
using std::srand;
#include <ctime>
using std::time;int main()
{
srand(time(0));
int counter = 0;
int growth; for(int i = 0; i < 50; i++)
{
if((growth = rand() % 151 + 150) >= 170)
{
counter++;
}
cout << growth << ' ';
}
cout << endl << endl; cout << counter << " pupil";
cout << (counter != 1 ? "s" : "") << endl; // Если будет только 1 ученик,
//то больше ничего не печатать
//иначе - допечатать букву "s" cin.get();
return 0;
from random import*
def kratnye(chuslo,spysok,chusla,sluchay):
while(chuslo!=0):
chuslo=int(input("Введите число"))
if(chuslo>0):
spysok.append(chuslo)
else:
if(sluchay<5):
for x in spysok:
if(x/5 in range(1,1000,1)):
chusla=chusla+1
print("Чисел, которые делятся на 5:",chusla-1)
elif(sluchay>5):
for x in spysok:
if(x/9 in range(1,1000,1)):
chusla=chusla+1
else:
continue
print("Чисел, которые делятся на 9:",chusla-1)
a=int(input("Напишите 1 чтобы начать, 0 чтобы закончить программу"))
b=[]
c=1
d=randint(1,11)
kratnye(a,b,c,d)