话不多说,跟着小编来看下实现代码吧
1
2
3
4
5
6
7
8
9
10
11
12
|
static void Main( string [] args)
{
for ( int i = 1; i < 10; i++) {
for ( int s = 1; s <= i; s++) {
Console.Write(s + "*" + i + "=" + i * s + " " );
if (i == s) {
Console.Write( "\n" );
}
}
}
Console.ReadKey();
}
|
示例图:
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/lengzhan/p/6026185.html