1.C#操作TXT文本的源代码!
2.编一个程序,首先输入一个成绩(0-100),然后用if else语句判断该成绩是打飞机源码优、良、中、那曲系统源码及格还是不及格。
C#操作TXT文本的源代码!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace OutputText
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.Load += new EventHandler(Form1_Load);
}
void Form1_Load(object sender, EventArgs e)
{
this.btnShow.Click += new EventHandler(btnShow_Click);
}
void btnShow_Click(object sender, EventArgs e)
{
// 判断输入的行数
string input = this.txtInput.Text.Trim();
//用于读文本的时候记数
int numOfTextFile;
// int.TryParse验证输入的是不是行数
if (int.TryParse(input, out numOfTextFile))
{
//StreamReader 打开文件
using(StreamReader sr = new StreamReader(@"D:\text.txt"))
{
int count=0;
// ReadLine 读一行
string txtContent = sr.ReadLine();
while (txtContent != null)
{
//读一行记一下数
count++;
//如果和你要求的输入行数匹配,显示文本,中断循环
if (count == numOfTextFile)
{
this.textBox1.Text = txtContent;
this.textBox2.Text = txtContent;
this.textBox3.Text = sr.ReadLine();
break;
}
else
{
txtContent = sr.ReadLine();
}
}
}
}
}
}
}
编一个程序,首先输入一个成绩(0-),然后用if else语句判断该成绩是ase项目源码优、良、中、及格还是共振买入源码不及格。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ScoreGrade
{
class Program
{
static void Main(string[] args)
{
double a;
Console.WriteLine("请输入成绩:");
a = Convert.ToDouble(Console.ReadLine());
if (a >= && a <= )
{
Console.WriteLine("该成绩优秀!");
Console.ReadLine();
}
else if (a >= && a <= )
{
Console.WriteLine("该成绩良好!");
Console.ReadLine();
}
else if (a >= && a <= )
{
Console.WriteLine("该成绩为中!岳阳网店源码");
Console.ReadLine();
}
else if (a >= && a <= )
{
Console.WriteLine("该成绩及格!");
Console.ReadLine();
}
else
{
Console.WriteLine("该成绩不及格!");
Console.ReadLine();
}
}
}
}