Answers for "ti basic access list"

0

ti basic access list

TI - BASIC
//Syntax for creating a custom list
//ʟLISTNAME

//Declaring a list
:{1,2,3,4,5}→ʟLISTNAME

//Find lenght of a list
:Disp dim(ʟLISTNAME)
//Outputs:
//5

//Access elements
:Disp ʟLISTNAME(1)
//Should Output the first element
//Output:
//1
Posted by: Guest on February-27-2022

Browse Popular Code Answers by Language