"Résolution de l' exercice avec la boucle While" n=int(input("n= ")) i=2 while n%i!=0 and i
@BenncarAchraf Жыл бұрын
n = int(input("veuillez saisir une valeur:")) A = 0 for i in range(1,n): if n % i == 0: A = A + 1 if A < 2: print(n,"est un nombre premier") else : print(n,"n'est pas un nombre premier")
@oussamahmoute9 ай бұрын
N=int(input(" veuillez saisir un nombre entier : ")) i=2 while i
@zineddinelouzani70693 жыл бұрын
am from Algeria and am so lucly to be able to understand both french and english , if your channel was in english you will make more progress and target more people , the content you are presenting is with high quality. All the best for you sir
@goldendovah76133 жыл бұрын
The educational system here in Morocco is mainly in the French language. Although I agree with you that consuming content in English is much more comprehensible than in French, it's still more productive to have these videos in French given the circumstances.
@hassanbahi3 жыл бұрын
One day, I will make the same videos in English.
@rachidjannane91222 жыл бұрын
num = int(input('please entre your number')) for i in range(2,int(num/2)): if num%i == 0 : print(str(num) + ' NO PRE') break else: print(str(num)+' PRE')
@younessag33277 ай бұрын
a=int(input("enter la valeur de a ")) b="est premier" c= "n est pqs premier" for i in range (2,a-1): if a%i == 0 : m=c break else : m=b print ("le nombre a ", m)
@noureddine49303 жыл бұрын
n=int(input("Saisir un nombre : ")) while(n
@YuzizzzYTB4 ай бұрын
voila ma solution: while True: nb = int(input("Veuillez saisir le nombre à tester: ")) if not nb == "": break i = 2 rest = 0 for i in range(2, nb): rest = rest + nb % i if rest == 0: print(str(nb)+" n'est pas un nombre premier.") break if not rest == 0: print(str(nb)+" est un nombre premier.") break if nb == 1: print(str(nb)+" est un nombre premier.") break
@Mohamedmohamed-mw2rd3 жыл бұрын
Lah y7afdik si hassan👌
@hassanbahi3 жыл бұрын
Amine
@3Misericorde2 жыл бұрын
Bonjour monsieur et merci beaucoup pour la vidéo. Cependant j'aimerais savoir s'il n'y a pas une condition qui manque car si on se fie au code tel qu'il est le nombre 1 apparaît premier ce qui n'est évidemment pas le cas. Raison pour laquelle je pense qu'il faut émettre une condition pour le cas du 1.
@amjed5553 жыл бұрын
n=int(input("donner votre nombre ")) r = 0 for i in range ( 2,n) : if (n % i == 0 ) : r = r+1 else: r =r +0 if (r > 0): print (n,"n'est pas un nombre premier ") elif (r == 0) : print(n,"est un nombre premier") je pense qu'il y a un petit erreur
@mariamechamssi54203 жыл бұрын
je n"ai pas bien compris le role de "estpremier", pouvez-vous me donner une clarificaion?
@ayoubrok42963 жыл бұрын
استاد حسان بغينا تمارين ديال max and min les tableux
@hassanbahi3 жыл бұрын
Prochainement
@mohamedamine59653 жыл бұрын
Dir lina les fonctions et les tableaux
@hassanbahi3 жыл бұрын
Prochainement
@sarralahmer17972 жыл бұрын
merci bcp
@hassanbahi2 жыл бұрын
De rien
@goldendovah76133 жыл бұрын
On peut aussi faire N//2 + 1 dans le range fonction.
@hassanbahi3 жыл бұрын
Merci pour l'information
@animeeroke69833 жыл бұрын
سلام عليكم خويا تبارك الله عليك ولكين واش تقدر تشرح لينا les tableaux عفاك ضروري
@hassanbahi3 жыл бұрын
Prochainement
@hamzahaouri62393 жыл бұрын
mr hassan hadi hsn je pense s = 0 x = int (input("saisir un nombre : ")) for i in range (1,x+1): if ( x % i == 0 ): s+=1 if(s== 2 ): print(" premier " ) else: print("non premier ")
@hassanbahi3 жыл бұрын
Merci pour le partage
@ghallalahouaimad17713 жыл бұрын
Monsieur si vous plaît dir lina les listes o dictionnaires
@hassanbahi3 жыл бұрын
Prochainement
@mahdielhajuojy11123 жыл бұрын
Merci 🙏🙏❤️
@hassanbahi3 жыл бұрын
🙏
@lesmathematiques-kz4kk2 жыл бұрын
السلام عليكم ورحمة الله وبركاته، عندي مبرهنة جديدة في الرياضيات وأريد نشرها في مجلة علمية هل توجد نصيحة؟ هذه المبرهنة لها علاقة بالأعداد الأولية، شكرا جزيلا على تقديم المساعدة ،
@mlp7672 жыл бұрын
contacte moi
@imanemanaa67853 жыл бұрын
💛
@hassanbahi3 жыл бұрын
🌸
@laghrifyoussef Жыл бұрын
Et pour 0 et 1 ??
@KkE32310 ай бұрын
Et pour 4
@painpgm10962 жыл бұрын
En C++ please
@kanematheux46522 жыл бұрын
Bonjour Mr Hassan, peut_on passer par cette méthode, en cherchant le nombre de diviseur? Presque c'est la même chose que la vôtre n=int_(input("Donner un nombre :")) #nbrdiv, est le nombre de diviseur nbrdiv=1 for i in range(2,int(n/2)): Rest=n%i if(rest==0): nbrdiv+=1 Break if(nbrdiv==1): Print(n,"est premier") Print ("car le nombre de diviseur est:", nbrdiv) else : Print (n,"n'est pas premier") Print ("car le nombre de diviseur est:", nbrdiv)
@AdamB-sw7zm Жыл бұрын
N = int(input("Veuillez entrer un nombre N naturel :")) liste = [] for i in range(1, N+1): if N % i == 0: liste.append(i) #Exception: if i == 1: print("Ce nombre n'est pas premier") exit() if len(liste)
@Islam_Prod4 ай бұрын
n=int(input("donner un nombre :")) s=0 for i in range(1,n+1) : if n%i==0 : s=s+1 if s==2 : print("ce nombre est premier ") else : print("ce nombre n'est pas premier ")