“PPCM Python” Kode Jawaban

PPCM Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
 
def ppcm(a,b):
    """ppcm(a,b): calcul du 'Plus Petit Commun Multiple' entre 2 nombres entiers a et b"""
    if (a==0) or (b==0):
        return 0
    else:
        return (a*b)//pgcd(a,b)
 
# exemple d'utilisation:
print ppcm(56,42) # => affiche 168
Wide-eyed Weevil

PPCM Python

def ppcm2(*args):
    L = list( args )
    while len( L ) > 1:
        a = L[-1]
        L.pop()
        b = L[-1]
        L.pop()
        L.append( _ppcm(a,b) )
        
    return L[0]
Mouad En-naciry

Jawaban yang mirip dengan “PPCM Python”

Pertanyaan yang mirip dengan “PPCM Python”

Lebih banyak jawaban terkait untuk “PPCM Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya