到目前爲止,我已經想通了如何做到這一切,但我需要知道如何使這個代碼以這種方式行爲。C#求和排除
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
*
//and now the reverse
*
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
關鍵是什麼讓它跑回來呢?我假設從5開始挑選2個整數,但我很難追蹤它。這是我迄今爲止要求的兩個以前的解決方案。
//CIS 110 Program 7
//Online
using System;
class Program7
{
static int count, sum, countmax;
static void Main()
{
GetData();
}
static void GetData()
{
count = 0;
sum = 0;
countmax = 10;
while (count <= countmax)
{
while (sum <= count)
{
sum++;
Console.Write('*');
}
Console.WriteLine();
count++;
sum = 0;
}
}
}
//*
//**
//***
//****
//*****
//******
//*******
//********
//*********
//**********
//***********
//Press any key to continue . . .
//CIS 110 Program 7
//Online
using System;
class Program7
{
static int count, sum, countmax;
static void Main()
{
GetData();
}
static void GetData()
{
count = 9;
sum = 0;
while (count >= 0)
{
while (sum <= count)
{
sum++;
Console.Write('*');
}
Console.WriteLine();
count--;
sum = 0;
}
}
}
//**********
//*********
//********
//*******
//******
//*****
//****
//***
//**
//*
//Press any key to continue . . .
爲什麼不直接從張貼在編程過程中充分的問題嗎?我記得15年前在uni做這些入門練習。唉,你已經有人願意爲你做功課了。 – Brad