text fizzbuzz.poti

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text fizzbuzz.poti相关的知识,希望对你有一定的参考价值。

fizz(numero: Inteiro)
  se numero mod 3 == 0 então
    "fizz"
  senão
    "{numero}"
  fim    
fim

buzz(numero: Inteiro)
  se numero mod 5 == 0 então
    "buzz"
  senão
    "{numero}"
  fim    
fim

fizzbuzz_aux(numero: Inteiro)
  se numero mod 5 == 0 então
    "buzz"
  senão
    fizz(numero)
  fim    
fim

fizzbuzz(numero: Inteiro)
  se numero mod 15 == 0 então
    "fizzbuzz"
  senão
    fizzbuzz_aux(numero)
  fim    
fim

para i de 1 até 10 faça 
  escreva "fizz de {i} é {fizz(i)}"
fim


para i de 1 até 10 faça 
  escreva "buzz de {i} é {buzz(i)}"
fim


para i de 1 até 30 faça 
  escreva "fizzbuzz de {i} é {fizzbuzz(i)}"
fim

以上是关于text fizzbuzz.poti的主要内容,如果未能解决你的问题,请参考以下文章

<!-- text --> 和 /* text */ 注释有啥区别?

VB中 如何复制Text1.text的字体到剪贴板? 如何剪切?

VB 加减乘除

text-decoration:[ text-decoration-line ] || [ text-decoration-style ] || [ text-decoration-color ]

.text 和 .get_text() 之间的区别

javascript或css:如何隐藏标签内的文本中的任何数字,后跟点前缀“1.text”,“2.text”...“30.text”