using System ; using System . Collections . Generic ; using System . Linq ; using System . Text ; namespace _0909while循环 { class Program { static void Main ( string [] args ) { //int day = 0; //Console.WriteLine("请输入一个年份:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _0909while循环
{
class Program
{
static void Main(string[] args)
{
//int day = 0;
//Console.WriteLine("请输入一个年份:");
//try
//{
// int year = Convert.ToInt32(Console.ReadLine());
// Console.WriteLine("请输入一个月份:");
// try
// {
// int month = Convert.ToInt32(Console.ReadLine());
// if (month >= 1 && month <= 12)
// {
// switch (month)
// {
// case 1:
// case 3:
// case 5:
// case 7:
// case 8:
// case 10:
// case 12:
// day = 31;
// break;
// case 2:
// if ((year % 400 == 0) || (year % 4 == 0 && year % 100 == 0))
// {
// day = 29;
// }
// else
// {
// day = 28;
// }
// break;
// case 4:
// case 6:
// case 9:
// case 11:
// day = 30;
// break;
// }
// Console.WriteLine("{0}年{1}月{2}天",year,month,day);
// }
// else
// {
// Console.WriteLine("输入的月份有太大了");
// }
// }
// catch
// {
// Console.WriteLine("输入的月份有错误");
// }
//}
//catch
//{
// Console.WriteLine("输入的年份有错误");
//}
//Console.ReadKey();
//向控制台打印100遍“”
//循环体 需要执行的语句
//循环条件 打印的次数小于100遍
//int i = 0;
//while (i < 100)
//{
// Console.WriteLine("努力赚钱");
// i++;//每循环一次,i的值都要自增加1,否则将陷入死循环
//}
//Console.ReadKey();
//1-100之间所有偶数的和
//int i = 1;
//int sum = 0;
//while (i <= 100)
//{
// if (i % 2 == 0)
// {
// sum += i;
// }
// i++;
//}
//Console.WriteLine(sum);
//Console.ReadKey();
//break 跳出当前循环
//int i = 1;
//while (i < 10)
//{
// int j = 1;
// while (j <= i)
// {
// Console.WriteLine("{0}*{1}={2} ", i, j, i * j);
// j++;
// }
// i++;
//}
//Console.ReadKey();
//循环体
//循环条件 用户名或者密码错误
//string useName = "";
//string passWord = "";
//while (useName != "admin" || passWord != "888888")
//{
// Console.WriteLine("请输入用户名");
// useName = Console.ReadLine();
// Console.WriteLine("请输入密码");
// passWord = Console.ReadLine();
//}
//Console.WriteLine("登陆成功");
//Console.ReadKey();
//输入班级人数,依次计算班级人数的平均成绩和总成绩
//循环体 提示输入学员成绩,接收并转换成整数类型,并依次累加到总成绩当中
//循环条件 小于等于班级人数
//int i = 1;//记录循环次数
//int sum = 0;
//Console.WriteLine("请输入班级人数");
//int count = Convert.ToInt32(Console.ReadLine());
//while (i <= count)
//{
// Console.WriteLine("请输入第{0}个学员的成绩",i);
// int score = Convert.ToInt32(Console.ReadLine());
// sum += score;
// i++;
//}
//Console.WriteLine("人数为{0}人的班级总成绩是{1},平均成绩是{2}",count,sum,sum/count);
//Console.ReadKey();
//string answer = "";
//int i = 1;
//while(answer != "yes" && i<=10)
//{
// Console.WriteLine("第{0}遍,你会了吗?yes/no",i);
// answer = Console.ReadLine();
// if (answer == "yes")
// {
// Console.WriteLine("放学");
// break;
// }
// i++;
//}
//Console.ReadKey();
//string input = "";
//while (input != "yes" && input != "no")
//{
// Console.WriteLine("请输入yes或者no");
// input = Console.ReadLine();
//}
//Console.ReadKey();
//string name = "";
//string pwd = "";
//do
//{
// Console.WriteLine("请输入用户名");
// name = Console.ReadLine();
// Console.WriteLine("请输入密码");
// pwd = Console.ReadLine();;
//} while (name != "admin" || pwd != "888888");
//Console.WriteLine("登录成功");
//Console.ReadKey();
//不断要求用户输入学生姓名,输入q结束
//string name = "";
//do
//{
// Console.WriteLine("请输入学员姓名");
// name = Console.ReadLine();
//} while (name!="q");
//while (name != "q")
//{
// Console.WriteLine("请输入学员姓名");
// name = Console.ReadLine();
//}
//Console.ReadKey();
//string input = "";
//while (input !="q")
//{
// //输入不能直接转换成int类型,因为有可能输入的是q
// Console.WriteLine("请输入一个数字");
// input = Console.ReadLine();
// if (input != "q")
// {
// try
// {
// int number = Convert.ToInt32(input);
// Console.WriteLine(number * 2);
// }
// catch
// {
// Console.WriteLine("输入的字符串不能转换成数字");
// }
// }
// else
// {
// Console.WriteLine("输入的是q,程序退出");
// }
//}
//Console.ReadKey();
}
}
}