文件名称:C#入门经典教程
- 所属分类:
- 其他小程序
- 资源属性:
- 上传时间:
- 2017-11-17
- 文件大小:
- 3.5mb
- 下载次数:
- 0次
- 提 供 者:
- NanSto******
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
下载
别用迅雷、360浏览器下载。
如迅雷强制弹出,可右键点击选“另存为”。
失败请重下,重下不扣分。
如迅雷强制弹出,可右键点击选“另存为”。
失败请重下,重下不扣分。
介绍说明--下载内容均来自于网络,请自行研究使用
using System;
namespace ArrayApplication
{
class MyArray
{
static void Main(string[] args)
{
int [] n = new int[10]; /* n 是一个带有 10 个整数的数组 */
int i,j;
/* 初始化数组 n 中的元素 */
for ( i = 0; i < 10; i++ )
{
n[ i ] = i + 100;
}
/* 输出每个数组元素的值 */
for (j = 0; j < 10; j++ )
{
Console.WriteLine("Element[{0}] = {1}", j, n[j]);
}
Console.ReadKey();
}
}
}(We have read so many inspiring examples about how the successful people stick to their dreams. We see the power of persistence. But as I see different situations, sometimes the way to gain achievement is not favored by me. Different people have different ways to keep move on.)
namespace ArrayApplication
{
class MyArray
{
static void Main(string[] args)
{
int [] n = new int[10]; /* n 是一个带有 10 个整数的数组 */
int i,j;
/* 初始化数组 n 中的元素 */
for ( i = 0; i < 10; i++ )
{
n[ i ] = i + 100;
}
/* 输出每个数组元素的值 */
for (j = 0; j < 10; j++ )
{
Console.WriteLine("Element[{0}] = {1}", j, n[j]);
}
Console.ReadKey();
}
}
}(We have read so many inspiring examples about how the successful people stick to their dreams. We see the power of persistence. But as I see different situations, sometimes the way to gain achievement is not favored by me. Different people have different ways to keep move on.)
相关搜索: 数组
(系统自动生成,下载前可以参看下载内容)
下载文件列表
文件名 | 大小 | 更新时间 |
---|---|---|
C#入门经典教程.ppt | 7715328 | 2017-11-15 |