**TI83F*

Created by TI Connect CE 5.6.3.2278       + SONINV2   PYCD # Projets STEM Hub
from ti_system import *
from time import *
import sound
import ti_plotlib as plt



def gbf(x):
  sound.tone(x,3)

n=int(input("nbre de frequences "))
lf=[]
lt=[]
for i in range(n):
  print("freq",end="")
  print(i+1)
  f=int(input())
  lf.append(f)
  gbf(f)
  lt.append(1/f)

def exp_graph(x,y):
  xmax=max(x)+0.001
  ymax=max(y)+10
  plt.cls()
  plt.auto_window(x,y)
  plt.grid(0.01,200,"dot")
  
  plt.labels("T","F",11,2)
  plt.axes("on")
  plt.color(255,0,0)
  plt.plot(x,y,"x")
  plt.show_plot()

  
  
  
dą