output [number+4]
output space;输出空格
cmp bx,cx
jb one
output hh
inc cx
cmp cx,9
ja forEnd
mov bx,0
jmp one
forEnd:
INVOKE ExitProcess, 0
PUBLIC _start
END
------解决方案--------------------楼主写的就已经很简单了。
------解决方案--------------------网络上搜索有多种写法可学,多学几种写法有益处.
------解决方案--------------------不知道lz所谓的“简洁”是不是想少写几行代码
Enumerable.Range(1, 9).SelectMany(t => Enumerable.Range(1, t).Select(tt => t + "*" + tt + "=" + tt * t + (tt==t?"\r\n":"\t"))).ToList().ForEach(t=>Console.Write(t));
------解决方案--------------------用上字符串格式化就好了,不然代码很难看。