《ASPNET架构》实验报告10学时
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验1 C#程序设计1(2学时)实验目的
了解C#语言的特点。
熟悉C#的开发环境。
掌握用VS2008编写C#基本程序。
实验内容
1、循环实现:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace sum
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("输入要计算的项数,项数要大于四:");
int n;
n = int.Parse(Console.ReadLine());
float[] a = new float[n];
float[] b = new float[n];
float sum = 0.0f, p = 0.0f;
int i, Q = -1;
a[0] = 1.0f;
a[1] = 2.0f;
b[0] = 2.0f;
b[1] = 3.0f;
for (i = 2; i < n; i++)
{
a[i] = a[i - 2] + a[i - 1];
b[i] = b[i - 2] + b[i - 1];
}
for (i = 0; i < n; i++)
{
p = b[i] / a[i];
Q *= -1;
sum += p * Q;
}
Console.WriteLine("前"+n+"位的结果是:" + sum);
Console.Read();
}
}
}
}
2、从键盘输入一行字符串,用数组来存放统计出的字母、数字、空格和其他字符个数。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace zmm
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[4];
int i;
System.Console.WriteLine("请输入一串数字:");
string input = Console.ReadLine();
foreach (char love in input)
{
if (char.IsLetter(love)) a[0]++;
else if (char.IsNumber(love)) a[1]++;
else if (char.IsWhiteSpace(love)) a[2]++;
else a[3]++;
}
Console.WriteLine("字母的个数是: {0}", a[0]);
Console.WriteLine("数字的个数是: {0}",a[1]);
Console.WriteLine("空格的个数是: {0}", a[2]);
Console.WriteLine("其他字符的个数是: {0}", a[3]);
Console.Read();
}
}
}
实验2 C#程序设计2(2学时)实验目的
了解C#数组的特点。
掌握C#交错数组的编程程序。
实验内容
1、存储和打印杨辉三角形(要求使用交错数组存储)。
输出格式如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace杨辉三角
{
class Program
{
static void Main(string[] args)
{
Console.Write("请输入行数:");
int n = int.Parse(Console.ReadLine());
int[,] arr = new int[n, n];
for (int i = 0; i < n; i++)
{
Console.WriteLine(" ");
for (int k = n - 1-i; k>0 ; k--)
{
Console.Write(" ");
}
for (int j=0; j <= i; j++)
{
if (j == i || j == 0)
arr[i, j] = 1;
else
arr[i, j] = arr[i - 1, j - 1] + arr[i - 1, j];
Console.Write("{0} ", arr[i, j]);
}
}
Console.ReadLine();
}
}
}