I can run using num of users and amount of time to run. how can i specify to run 100 requests?

I can run using num of users and amount of time to run. how can i specify to run 100 requests?

Try repeat, following snippet is in Scala, check docs for repeat in java/kotlin

val scn = scenario ("foobar")
  .repeat(100)(
    exec(myhttpcall)
  )