今天好悲催啊,竟然生病啦,不过一切还好!

今天我们在云和数据学习的第二天,上午没有听课,似乎学习了变量的定义以及命名方法,还有变量类型的显隐式转换;我感觉这些还是在之前看书知道啦把,因此看啦看老师做的笔记以及写的程序例子也就好啦。

下午三点赶来上课了,学习了if···else···分支语句的用法:下面就是我们的课下练习,我已经完成了,就随意记录下吧!

程序如下:

<1> 写下判断闰年的表达式,设待判断的年份变量为year,润年的判定(符合下面两个条件之一):年份能够被400整除或者年份能够被4整除但不能被100整除.让用户输入一个年份,如果是润年,则输出true,如果不是,则输出false.

 class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入一个年份");
string year =Console.ReadLine();
int year1 = Convert.ToInt32(year); bool a = year1 % == ;
bool b = year1 % == && year1 % != ;
if (a)
{
Console.WriteLine(a);
Console.ReadKey();
}
else if (b)
{
Console.WriteLine(b);
Console.ReadKey();
}
else
{
Console.ReadKey(false);
} }
}

<2>让用户输入年龄,如果输入的年龄大于23(含)岁,则给用户显示你到了结婚的年龄了.

 class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入您的年龄:");
string age = Console.ReadLine();
int age1 = Convert.ToInt32(age);
if (age1 > )
{
Console.WriteLine("你到了结婚的年龄了.");
Console.ReadKey();
}
}
}

<3>如果老苏的(chinese  music)语文成绩大于90并且音乐成绩大于80或者语文成绩等于100并且音乐成绩大于70,则奖励100元.

 class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入您的语文成绩:");
string chinesecore = Console.ReadLine(); Console.WriteLine("请输入您的音乐成绩:");
string music = Console.ReadLine(); int chinesecore1 = Convert.ToInt32(chinesecore);
int music1 = Convert.ToInt32(music); if (chinesecore1 > && music1>)
{
Console.WriteLine("奖励你100元.");
Console.ReadKey();
}
else if (chinesecore1 == && music1 >)
{
Console.WriteLine("奖励你100元.");
Console.ReadKey();
}
}
}

<4>让用户输入用户名和密码,如果用户名为admin,密码为mypass,则提示登录成功.

 class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入用户名:");
string username = Console.ReadLine(); Console.WriteLine("请输入密码:");
string pwd = Console.ReadLine(); bool a = username == "admin" && pwd == "mypass";
if (a)
{
Console.WriteLine("登录成功");
Console.ReadKey();
}
}
}

<5>老苏买了一筐鸡蛋,如果坏蛋少于5个,他就吃掉,否则他就去退货

 class Program
{
static void Main(string[] args)
{
Console.WriteLine("老苏买一筐鸡蛋,其中坏蛋的个数:");
string eggs = Console.ReadLine(); int eggs1 = Convert.ToInt32(eggs);
if (eggs1 > )
{
Console.WriteLine("请您吃掉这一筐鸡蛋");
Console.ReadKey();
}
else
{
Console.WriteLine("您去退货吧");
Console.ReadKey();
}
}
}

<6>要求用户输入两个数a、b,如果a和b整除或者a加b大于100,则输出a的值,否则输出b的值

class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入两个数:");
string a = Console.ReadLine();
string b = Console.ReadLine();
int a1 = Convert.ToInt32(a);
int b1 = Convert.ToInt32(b);
if (a1 % b1 == || a1 + b1 > )
{
Console.WriteLine("{0}", a1);
}
else
{
Console.WriteLine("{0}", b1);
}
Console.ReadKey();
}
}

<7>对学员的结业考试成绩评测(考虑用if好还是用if-else好)

成绩>=90 :A

90>成绩>=80 :B

80>成绩>=70 :C

70>成绩>=60 :D

成绩<60  :E

class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入学员的考试成绩:");
string sore = Console.ReadLine();
int sore1 = Convert.ToInt32(sore);
if (sore1 >= )
{
Console.WriteLine("A");
Console.ReadKey();
}
else if (sore1< && sore1 >=)
{
Console.WriteLine("B");
Console.ReadKey();
}
else if (sore1 < && sore1 >= )
{
Console.WriteLine("C");
Console.ReadKey();
}
else if (sore1 < && sore1 >= )
{
Console.WriteLine("D");
Console.ReadKey();
}
else if (sore1 < )
{
Console.WriteLine("E");
Console.ReadKey();
}
Console.ReadLine();
Console.ReadKey();
}
}

这是今天练习的几个,还有好几个例子,我要继续努力了额1

偶值得纪念的一天-初学习C#的更多相关文章

  1. [书籍]值得纪念的第100篇博客,推荐一些看过的UI书籍

    1. 前言 来到博客园11年,这两年闲下来了才有时间写写博客,不知不觉终于写到第100篇博客了.回顾过去发表的博客,居然大部分都与UI相关.明明我本来从事的是Oracle的相关开发,明明我当初的目标是 ...

  2. clisp, scheme 和 clojure 初学习

    clisp, scheme和clojure 初学习 1 clojure "clojure绝对会成为你的编程工具箱里的终极武器" "其他语言可能只是工具,但 Clojure ...

  3. c# window服务-初学习

    window服务-初学习 一.工具: VS2015+NET Framework4.5. 二.操作: 1.新建windows服务的项目: 2.修改windows服务相关内容: 3.预览windows服务 ...

  4. Python初学习:简单的练习题

    Python初学习 一些见到那的练习题: 初级难度 设计一重量转换器,输入以g为单位的数字后,返回换算结果以Kg为单位的结果 中级难度 设计一个求直角三角形斜边长的函数,(以两个直角边为参数,求最长边 ...

  5. Linux初学习

    Linux Linux运行与关闭 Linux 是一套免费使用和自由传播的类 Unix 操作系统,是一个基于 POSIX 和 UNIX 的多用户.多任务.支持多线程和多 CPU 的操作系统. Linux ...

  6. Swift初学习

    距离swift发布10天了,也简单看了一下swift的语法,个人感觉相对于object-c很是简单明了.Swift的出现并不能说明iOS开发简单了很多,有可能会变得复杂,你需要学习两门编程语言,因为在 ...

  7. Jquery 插件初学习

    参考文章:插件开发精品教程,让你的jQuery提升一个台阶 刚刚学了一下jquery的插件插件开发,写个demo记录.练习一下.毕竟,输出才是最好的学习. 这个也不过是最基础的一个插件写法,只是,自己 ...

  8. requests库写接口测试框架初学习

    学习网址:    https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-dscpm/ff75b907-415d-4220-89 ...

  9. 2018.2.21 Python 初学习

    折腾了一天,一直在用CMD学习Python写Hello World.偶然间发现可以用Pycharm.也算是给后面想学习的人提个醒,方便省事许多. format()使用方法. age = 20name ...

随机推荐

  1. Git安装遇到的问题fatal: Could not read from remote repository.的解决办法

    转自:https://blog.csdn.net/huahua78/article/details/52330792 查看远端地址 git remote –v 查看配置 git config --li ...

  2. C语言课程设计-保安值班系统支持任意输入保安值班时间

    //.cpp : Defines the entry point for the console application. // #include "string.h" #incl ...

  3. freetds 移植

    移植freetds主要是为了能够在linux下,使用C语言访问微软的sqlserver数据库. 参考连接 http://blog.csdn.net/neighbor1000/article/detai ...

  4. resharper安装后,F12不能转到定义,也不是反编译,而是转到对象浏览器(object browser)

    问: resharper安装后,一不小心点错了(选择了object browser)以上配置在哪里设置?转到定义用习惯了. 回答 :打开Resharper,选择Options,然后选择Tools中的E ...

  5. alter system set events相关知识

    格式:alter system|session set events ‘[eventnumber|immediate] trace name eventname [forever] [, level ...

  6. nginx配置一、二级域名、多域名对应(api接口、前端网站、后台管理网站)

    前提:安装好nginx,如果已经启动nginx,先停止,命令: ./usr/local/nginx/sbin/nginx -s stop 修改nginx配置 vi /usr/local/nginx/c ...

  7. Mac下配置Oracle数据库客户端远程连接数据库服务器

    下载mac数据库客户端: 地址:http://www.oracle.com/technetwork/topics/intel-macsoft-096467.html 下载这俩个:(来源:http:// ...

  8. 转 linux 权限

    发布系统架构图简化如下: 管理员通过Jenkins调用“发布程序(代号varian,以下简称varian)”,发布程序会进行一系列的初始化操作,完成后生成Docker镜像上传到Docker仓库,容器集 ...

  9. hive以文件创建表

    create table location( location string, ip string, name string, city string, classfication string, c ...

  10. GDAL------API

    转载:http://gdal.org/java/org/gdal/gdal/gdal.html