程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言問答 >> C語言的高手啊!!!!

C語言的高手啊!!!!

編輯:C語言問答

C語言的高手啊!!!!

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {

            for (int x = 0; x < 9; x++)
            {
                if ((x == 0) || (x == 8))
                {
                    for (int i = 0; i < 9; i++)

                        System.Console.Write("*");
                    System.Console.WriteLine(" ");

                }
                else
                {

                    for (int i = 0; i < 9; i++)
                    {
                        if ((i == 0) || (i ==8))
                        {

                            System.Console.Write("*");
                        }
                        else
                            System.Console.Write(" ");
                    }
                    System.Console.WriteLine(" ");
                }
            }
            System.Console.ReadLine();
           
             
        }
    }
}
這是用個*組成的邊長為9*9的長方形 那個高手能幫我把for 改成while的循環.

!!!!  行的話馬上采納.

最佳回答:

你這個是C#吧? 怎麼....說C語言呢....
補充:
原始代碼好像有問題的, 對嗎?
另外, 變長為9*9? 正方形/.?
補充:
你替換試試:
int x = 0, i = 0 ;
    while( x < 9)
    {
        if ((x == 0) || (x == 8))
        {
            i=0;
            while (i < 9) {
                System.Console.Write("*");
                i++;
            }
            System.Console.WriteLine(" ");

        }
        else
        {
            i = 0;
            while (i < 9)
            {
                if ((i == 0) || (i == 8))
                {

                    System.Console.Write("*");
                }
                else
                    System.Console.Write(" ");
                i++;
            }
            System.Console.WriteLine(" ");
        }
         x++;
    }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved