在一条线的中间

Posted

tags:

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

********************************************************************************
* *
* Andreas writes groovy scripts! Jana corrects the mistakes! ;-) *
* *
********************************************************************************
  1. def star = '*'
  2. def lineof80stars = star * 80
  3.  
  4. def myName = 'Andreas'
  5. def mySister = 'Jana'
  6. def gString = "$myName writes groovy scripts! $mySister corrects the mistakes! ;-)"
  7. def centerText = star + gString.center(78) + star
  8. def centerEmptyLine = star + " ".center(78) + star
  9. def newline = ' '
  10.  
  11. print lineof80stars + newline
  12. println centerEmptyLine
  13. println centerText
  14. println centerEmptyLine
  15. print lineof80stars

以上是关于在一条线的中间的主要内容,如果未能解决你的问题,请参考以下文章

twoway怎么画一条线

Educational Codeforces Round 41

如何在谷歌地图中找到一条线的中点

Educational Codeforces Round 41(已补D,E)

为啥 Chrome 会在 Firefox 显示一条线的地方画两条线?

在opencv Python中拖动鼠标绘制一条线并获取线的端点坐标