编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 3781 篇代码解决方案

  • 1:从键盘上输入一个正整数n,请按照以下五行杨辉三角形的显示方式, 输出杨辉三角形的前n行。请采用循环控制语句来实现。

                        package com.homework.zw;//此题没有太大难度,不再写注释import java.util.Scanner;public class work4 { public static void main(String[] args

    https://www.u72.net/daima/h0a1.html - 2024-08-13 13:27:25 - 代码库
  • 2:无聊的会议

    【题目描述】   有一张正n边<em>形</em>的会议桌,n个干部分别坐在这个正n边<em>形</em>的各个顶点上。

    https://www.u72.net/daima/ra1u.html - 2024-08-18 05:57:59 - 代码库
  • 3:css3绘制六边

    六边<em>形</em>思路:使用CSS3绘制六边<em>形</em>主要使用伪类:before和:after在源元素之前和之后再绘制两个元素,并利用css3的边框样式,将这两个元素变成<em>三角形</em>放置在源

    https://www.u72.net/daima/0z37.html - 2024-08-28 09:31:42 - 代码库
  • 4:HDU 4082 Hou Yi's secret --枚举

    题意: 给n个点,问最多有多少个相似<em>三角形</em>(<em>三</em>个<em>角</em>对应相等)。

    https://www.u72.net/daima/nh9vk.html - 2024-08-03 11:13:14 - 代码库
  • 5:杨辉三角

                          1 import java.util.Scanner; 2 import java.util.InputMismatchException; 3 public class Text2 4 { 5     public static void main(String[] arg

    https://www.u72.net/daima/h6nr.html - 2024-08-13 18:00:10 - 代码库
  • 6:杨辉三角

                        找规律  找出上一层与下一层的关系  递推  # include&lt;stdio.h&gt; int main()  {      int N,i,j,a[30][30]={0};    scanf(&quot;%d&quot;,&amp;N);    for(i=1;

    https://www.u72.net/daima/sb3w.html - 2024-08-20 03:06:50 - 代码库
  • 7:杨辉三角

                        #include&lt;stdio.h&gt;int main(){int a[10][10];int i,j;        for(i=0;i&lt;10;i++)            {  a[i][0]=1; a[i][i]=1;  }for(i=2;i&lt;10;i++) for(j=1;j&lt;i;j++)

    https://www.u72.net/daima/xxrf.html - 2024-07-17 05:52:08 - 代码库
  • 8:杨辉三角

                         package Yanghuisanjiao;public class Yanghuisanjiao {          public static void main(String args[]) {                  int[][] b=new int [10][10];                          for

    https://www.u72.net/daima/7esc.html - 2024-09-10 22:58:53 - 代码库
  • 9:杨辉三角

                        public class YangHui {        public static void main(String args[]){                int a[][]=new int[6][6];                int i,j ;                for(i=0;i&lt;6;i++){                for(j=0;j&lt;6;j++

    https://www.u72.net/daima/7esw.html - 2024-09-10 22:59:15 - 代码库
  • 10:杨辉三角

                        public class YHSJ{public static void main(String[] args) {int i;int j;int a[][];a=new int[100][100];for(i=0;i&lt;10;i++)for(j=0;j&lt;=i;j++)

    https://www.u72.net/daima/7e96.html - 2024-09-10 23:45:19 - 代码库
  • 11:杨辉三角

                        public class Yanghui {        public static void main(String args[]){                int n=10;                int a[][]=new int[n][];                int i,j;                for(i=0;i&lt;n;i++){                        a[i]

    https://www.u72.net/daima/795h.html - 2024-09-10 21:58:49 - 代码库
  • 12:杨辉三角

                        public class A {        public static void main(String[] args) {                int i;int j;                        int a[][];                a=new int[100][100];                for(i=0;i&lt;10;i++)                for(j=0

    https://www.u72.net/daima/7ef8.html - 2024-09-10 22:50:52 - 代码库
  • 13:杨辉三角

                        public class yanghui{ public static void main(String[] args)  {   // TODO 自动生成的方法存根   int i,j,k,n,a[][];   a=new int[6][];

    https://www.u72.net/daima/8bss.html - 2024-09-11 11:07:13 - 代码库
  • 14:杨辉三角

                        public class Yanghui {        public static void main(String args[]){                int n=10;                int a[][]=new int[n][];                int i,j;                for(i=0;i&lt;n;i++){                a[i]=

    https://www.u72.net/daima/8b1u.html - 2024-09-11 11:28:44 - 代码库
  • 15:杨辉三角

                        package 佐翼;public class ZY { public static void main(String[] args){  int a[][] =new int[10][10];   //建立数组  for(int i=0;i&lt;10;i++)

    https://www.u72.net/daima/77bb.html - 2024-09-10 18:09:05 - 代码库
  • 16:杨辉三角

                        package 杨;public class AS {                public static void main(String[] args){                int a[][];int i,j;                a=new int[4][];                a[0]=new int[1];                for(i=0;

    https://www.u72.net/daima/77vr.html - 2024-09-10 18:29:37 - 代码库
  • 17:杨辉三角

                        using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplic

    https://www.u72.net/daima/nkc19.html - 2024-08-03 21:54:29 - 代码库
  • 18:三角border

                        .arrow_box:after {        border-color: rgba(136, 183, 213, 0);        border-bottom-color: #ffffff;        border-width: 30px;        margin-left: -30px;}.arrow_

    https://www.u72.net/daima/nhm8x.html - 2024-08-03 13:32:58 - 代码库
  • 19:第二次作业+105032014052

    根据测试人员以及自己的判断修改了一下程序 1)设计<em>三角形</em>问题的程序      输入<em>三</em>个整数a、b、c,分别作为<em>三角形</em>的<em>三</em>条边,现通过程序判断由<em>三</em>条边构成的

    https://www.u72.net/daima/7eax.html - 2024-09-10 22:25:51 - 代码库
  • 20:CSS3边框属性_圆角、CSS画基本图形(圆形、三角形、多边、爱心、八卦等)

                        有一些需要用到CSS3的属性,所以在你打开这篇文章的时候,用的是firefox或者chrome,当然IE也能看一部分1、正方形div{    background:#F00;    width:100p

    https://www.u72.net/daima/wd35.html - 2024-07-15 22:24:40 - 代码库