DiamondsBlocks

在2020年4月14日 (星期二)加入
添加243字节 、​ 2020年6月15日 (星期一)
无编辑摘要
(创建页面,内容为“=简介= 这里是DiamondsBlocks的用户页,你可以称此人为squid233 =咏squid代码= ==Java== <pre> public class YongSquid { public static void main…”)
 
无编辑摘要
第7行: 第7行:
     public static void main(String[] args) {
     public static void main(String[] args) {
         while(true) {
         while(true) {
             System.out.println("squid");
             System.out.print("squid");
         }
         }
     }
     }
第14行: 第14行:
==Python==
==Python==
<pre>
<pre>
while true:
while True:
     print("squid")
     print("squid")
</pre>
</pre>
第28行: 第28行:
     }
     }
     return 0;
     return 0;
}
</pre>
==C#==
<pre>
using System;
namespace YongSquidApplication
{
    class YongSquid
    {
        static void Main(string[] args)
        {
            for(;;)
            {
            Console.Write("squid");
            }
        }
    }
}
}
</pre>
</pre>
64

个编辑