作业:12.23

打印以下图型:
   行i  列j  i与j关系
●●●●● 1  5
●●●●● 2  5
●●●●● 3  5
●●●●● 4  5
●●●●● 5  5

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5
 6 namespace ConsoleApplication1
 7 {
 8     class Class1
 9     {
10         //五行五列
11         static void Main(string[] args)
12         {
13             for (int i = 1; i <= 5;i++ )
14             {
15                 for (int j = 1; j <= 5;j++ )
16                 {
17                     Console.Write("*");
18                 }
19                 Console.WriteLine();
20             }
21         }
22     }
23 }

●                1  1  j<=i
●●              2  2
●●●            3  3
●●●●           4  4
●●●●●         5  5

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5
 6 namespace ConsoleApplication1
 7 {
 8     class Class2
 9     {
10         static void Main(string[] args)
11         {
12             for (int i = 1; i <= 5;i++ )
13             {
14                 for (int j = 1; j <= i;j++ )
15                 {
16                     Console.Write("*");
17                 }
18                 Console.WriteLine();
19             }
20         }
21     }
22 }

●●●●●         1  5  j<=6-i  
●●●●           2  4
●●●            3  3
●●              4  2
●                5  1

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5
 6 namespace ConsoleApplication1
 7 {
 8     class Class3
 9     {
10         static void Main(string[] args)
11         {
12             for (int i = 1; i <= 5;i++ )
13             {
14                 for (int j = 1; j <= 6 - i;j++ )
15                 {
16                     Console.Write("*");
17                 }
18                 Console.WriteLine();
19             }
20         }
21     }
22 }

□□□□● 
□□□●● 
□□●●● 
□●●●● 
●●●●●

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5
 6 namespace ConsoleApplication1
 7 {
 8     class Class5
 9     {
10         static void Main(string[] args)
11         {
12             for (int i = 1; i <= 5;i++ )
13             {
14                 for (int j = 1; j <= 5 - i;j++ )
15                 {
16                     Console.Write(" ");
17                 }
18                 for (int m = 1; m <= i;m++ )
19                 {
20                     Console.Write("*");
21                 }
22                 Console.WriteLine();
23             }
24         }
25     }
26 }

□□□□●
□□□●●●
□□●●●●●
□●●●●●●●
●●●●●●●●●

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5
 6 namespace ConsoleApplication1
 7 {
 8     class Class4
 9     {
10         static void Main(string[] args)
11         {
12             for (int i = 1; i <= 5;i++ )
13             {
14                 for (int m = 1; m <= 5 - i;m++ )
15                 {
16                     Console.Write(" ");
17                 }
18                 for (int j = 1; j <= (2 * i - 1);j++ )
19                 {
20                     Console.Write("*");
21                 }
22                 Console.WriteLine();
23             }
24         }
25     }
26 }
时间: 2024-10-14 07:34:13

作业:12.23的相关文章

软件工程个人作业12

软件工程个人作业12 程序题目: •三人行设计了一个灌水论坛.信息学院的学生都喜欢在上面交流灌水,传说在论坛上有一个“水王”,他不但喜欢发帖,还会回复其他ID发的每个帖子.坊间风闻该“水王”发帖数目超过了帖子数目的一半. •如果你有一张当前论坛的帖子(包括回帖)列表,其中帖子的作者的ID也在其中,你能快速的找到这个传说中的水王吗? 一.设计思想 根据“水王”发帖数目超过了帖子数目的一半,通过寻找发帖数过半的ID找出“水王”. 二.源代码: 1 package finding; 2 3 impor

12.16~12.23工作日志

12.16~12.23工作日志 2016.12.16 1.cick事件调用的函数中加入touchmove等事件会发生事件穿透,详情(http://www.tuicool.com/articles/6NfaUnM) 移动设备的click事件有300ms延迟,用于判断是否双击 2.ios设备会有一个默认的css样式,如input按钮在电脑上默认为方形,而在iPhone上默认为圆形,清除ipone默认样式方法: Input{-webkit-appearance:none;} 3.border-radi

3.28日第七次作业12章沟通管理13章合同管理

3.28日第七次作业12章沟通管理13章合同管理   第12章.项目沟通管理   1.项目沟通管理包括哪些过程?(记)P349 答:1).沟通计划编制 2).信息分发 3).绩效报告 4).项目干系人管理 2.阻碍有效沟通的因素有哪些?P351-352 答:1).沟通双方的物理距离 2).沟通的环境因素 3).缺乏清晰的沟通渠道 4).复杂的组织结构 5).复杂的技术术语 6).有害的态度 3.沟通计划编制的第一步是什么?目的是什么?P353 答:沟通计划编制的第一步是干系人分析.其目的是得出项

12.21 php-fpm的pool;12.22 php-fpm慢执行日志;12.23 ;12.24

12.21 php-fpm的pool 1.添加pool: [[email protected] ~]# vim /usr/local/php-fpm/etc/php-fpm.conf 添加第二个pool: [hao1.com] listen = /tmp/hao1.sock listen.mode = 666 user = php-fpm group = php-fpm pm = dynamic pm.max_children = 50 pm.start_servers = 20 pm.min_

12.21 php-fpm的pool 12.22 php-fpm慢执行日志 12.23 open_b

12.21 php-fpm的pool [[email protected] etc]# vim php-fpm.conf [[email protected] etc]# mkdir php-fpm.d [[email protected] etc]# cd php-fpm.d [[email protected] php-fpm.d]# vim www.conf [[email protected] php-fpm.d]# vim martin.conf [martin] listen = /

12.21 php-fpm的pool 12.22 php-fpm慢执行日志 12.23 open_basedir 12.24 php-fpm进程管理

12.21 php-fpm的pool php-fpm有一个概念叫pool,就是使用psaux看到的右侧的那一列,也就是它的池子, 如下图,我们在这里只定义了一个pool 其实他是支持定义多个池子的,每一个池子我们可以监听不同的sock,或者不同的tcpip,这样的话如果我们的nginx有好几个站点每个站点都可以使用不同pool,这样做的好处就是其中一个php502了,其他站点不收影响,(502很有可能是php资源不够了)如果你所有的网站都使用了同一个池子的话,其中一个网站发生了故障,比如程序员写

mongo 杀掉慢的程序killMyRunningOps(&quot;12.23.32.21&quot;) #####这个是客户端的ip

mongodb运维(3) db.currentOp与db.killOp命令 2018.08.12 23:55 113浏览 字号 好久没更新mongo运维这块知识了,这次介绍 db.currentOp与db.killOp命令 数据库优化方法有很多,但所有数据库优化都离不开慢查询优化.mysql.mongodb都可以开启慢查询,来对数据库查询进行分析.开启慢查询日志,对性能会有一定的影响.mongoDB 有时我们只想临时看下慢查询日志,应该如何处理. 这时,我们可以用到mongdb的db.curre

家庭作业 6.23 两星

第六章家庭作业 选题:6.23(两星) **6.23 假设要求设计一个每条磁道位数固定的旋转磁盘,已知每个磁道的位数是由最里层磁道的周长确定的,可以假设它就是中间那个圆洞的周长.因此如果把磁盘中间的洞做得大一点,每个磁道的位数就会增大,但是总的磁道数会减少.如果用r来表示盘面的半径,x*r表示圆洞的半径,那么x取什么值能使这个磁盘的容量最大? 答:假设半径为r的磁盘总的磁道是K,磁道沿半径方向是均匀分布的.除掉内部的x*r,剩下的磁道数为 (1-x)*K.则总容量为2*pi*x*r*(1-x)*

作业12.24

1.有三种硬币若干:1分,2分,5分.要组合1毛5,有哪些组合方式? 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication4 7 { 8 class 硬币 9 { 10 //硬币有若干:1分的,2分的,5分的.要组合1毛5,有哪些组合方式? 11 static void Main(string[]