コード例 #1
0
 def updateB(container, textValue):
     global b
     if (utils.inputValidator(textValue.text)):
         b = int(textValue.text)
コード例 #2
0
 def updateA(container, textValue):
     global a
     if (utils.inputValidator(textValue.text)):
         a = int(textValue.text)
コード例 #3
0
 def premier(self):
     if (utils.inputValidator(a)):
         self.display.text = str(utils.premier(a))
コード例 #4
0
 def facteurs(self):
     if (utils.inputValidator(a)):
         self.display.text = str(utils.pdecomp(a))
コード例 #5
0
 def ppcm(self):
     if (utils.inputValidator(a) and utils.inputValidator(b)):
         self.display.text = str(utils.ppcm(a, b))