课程
/后端开发
/C#
/C#开发轻松入门
C#零基础课程的4-9编程题怎么做?
2017-09-18
源自:C#开发轻松入门 4-9
正在回答
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
static void Main(string[] args)
for (int y = 1; y <= 7; y++)
for (int x = 1; x <= 7; x++)
Console.Write(x);
if(x==y)
break;
}
Console.WriteLine();//换行
for (int y = 1; y <= 7; y++) { for (int x = 1; x <= y; x++) { Console.Write(x); } Console.WriteLine(); }
举报
本门课程是C#语言的入门教程,将带你轻松入门.NET开发
2 回答4-10编程题怎么做呀?
2 回答编程问题
1 回答c#4-10编程课的答案是什么?
2 回答3-6编程题
6 回答2-8的编程题求解