解决C#中的简单程序 [英] solve simple program in c#

查看:71
本文介绍了解决C#中的简单程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用c#打印

ABCDE
ABCD
ABC
AB

how to print with c#

ABCDE
ABCD
ABC
AB
A

推荐答案

很高兴看到您尝试过.检查以下代码

glad to see you have tried. check the following code

for (int i=1;i<=5;i++)
{
     for(int j=1;j<=i;j++)
       console.writeline(Convert.ToChar( j + 64 ));
}


我认为这是家庭作业?由学校提供.
你傻了吗,你尝试过什么吗?如果您想成为一名优秀的开发人员,则需要尝试一下.
如果经过多次尝试仍未解决,请联系我们.

离开这种用勺子喂食的习惯. "尝试尝试,但不要哭泣"

请发布您尝试过的代码.
I think this is Homework ? given by school.
Have you Gooooled, have you tried something? If you want to be a good developer you need to try yourself.
If it is not resolved after many attempts then come to us.

leave this habbit of spoon feeding. "Try Try but don''t cry"

Please post your tried code.


这篇关于解决C#中的简单程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆