c#Lesson03

...
using System;

namespace Day3
{
class MainClass
{
public static void Main (string[] args)
{
// 短路现象 逻辑运算符中 && (一假即假) ||(一真即真)
// //短路现象是一种 优化
// int n = 10;
// bool b1 = 10 > 20 && 5 > ++n;
// Console.WriteLine (n);
// int n1
// = 10;
// bool b2 = 30 > 20 || 5 > ++n;
// Console.WriteLine (n1);

        // 编程中三种结构
        // 1. 顺序结构
        // 2. 分支结构
        // 3. 循环结构(1)有事情做(2)有条件

        //死循环
        //          while(true){
        //              Console.WriteLine ("lanou");
        //          }

        // 如何控制循环
        // 控制循环的开始和结束
        // 如何控制循环次数
        // 3次
        // 记录 循环次数(循环变量)
        //          int count = 0;
        //          // 循环条件 (count < 3),true 继续循环 false 结束循环
        //          while (count < 3) {
        //              Console.WriteLine ("lanou");
        //              // 循环增量
        //              count++;
        //          }
        //          int a = 0;
        //          while (a < 20) {
        //              Console.WriteLine (a);
        //              a++;
        //          }
        //打印10个 Hello World!
        //          int b = 0;
        //          while (b < 10) {
        //              Console.WriteLine ("Hello World!");
        //              b++;
        //          }
        //          int c = 0;
        //          while( c < 10){
        //              Console.WriteLine ("hello world!");
        //              c++;
        //          }
        //          int d = 0;
        //          while(d< 10){
        //              Console.WriteLine ("hello world");
        //              d++;
        //          }
        //          int h = 0;
        //          while (h < 10) {
        //              Console.WriteLine ("HelloWorld");
        //              h++;
        //          }
        // 打印0-9
        //          int count = 0;
        //          while (count < 10) {
        //              Console.WriteLine (count);
        //              count++;
        //          }
        //          int count = 0;
        //          while (count < 10) {
        //              Console.Write (count + 1);
        //              count++;
        //          }
        //          Console.WriteLine ();
        //          Console.WriteLine ();
        //打印 10-0
        //          int count = 11;
        //          while (count > 0) {
        //              Console.WriteLine (count - 1);
        //              count--;
        //          }
        // 输入一个整数,控制循环次数
        //          int loop = int.Parse (Console.ReadLine ());
        //          int count = 0;
        //          while (count < loop) {
        //              Console.Write (count + "\t");
        //              count++;
        //          }
        // 计算1~10的和,并打印
        //          int sum = 0;
        //          // 保存和
        //          int count = 1;
        //          while (count <= 10) {
        //              sum += count;
        //              count++;
        //          }
        //          Console.WriteLine (sum);
        //
        //计算1-10的积
        //          int sum = 1;
        //          // 保存积
        //          int count = 1;
        //          while (count <= 10) {
        //              sum *= count;
        //              count++;
        //          }
        //          Console.WriteLine (sum);

        //          aMath f = new aMath ();
        //          f.add (10);
        //          Console.WriteLine (f);
        //  
        //打印 1 ~ 100之间所有的偶数 
        //          int n = 2;
        //          while (n <= 100) {
        //              
        //              Console.WriteLine (n);
        //              n += 2;
        //          }
        //          int count = 1;
        //          while (count <= 100) {
        //              if (count % 2 == 0) {
        //                  Console.WriteLine (count);
        //              }
        //              count++;
        //          }

        //计算 从 100 ~ 10000各个位之和为7的个数
        //自己想的方法
        //          int i = 100;
        //          int count = 0;
        //          while (i <= 10000) {
        //              int a = i % 10;
        //              int b = (i % 100 - a) / 10;
        //              int c = ((i % 1000) - (i % 100)) / 100;
        //              int d = ((i % 10000) - (i % 1000)) / 1000;
        //              if (a + b + c + d == 7) {
        //                  Console.WriteLine (i);
        //                  count++;
        //              }
        //              i++;
        //          }
        //          Console.WriteLine (count);
        //老师讲的方法
        //          int count = 100;
        //          int temp = 0;
        //          while (count <= 10000) {
        //              //将各个位上的数拆分出来
        //              //保存和
        //              int result = 0;
        //              //三位
        //              if (count >= 100 && count <= 999) {
        //                  //百位
        //                  int n1 = count / 100;
        //                  //十位
        //                  int n2 = count % 100 / 10;
        //                  //个位
        //                  int n3 = count % 10;
        //                  // 将各个位上的和加起来
        //                  result = n1 + n2 + n3;
        //              } else if (count >= 1000 && count <= 9999) {
        //                  //千
        //                  int n1 = count / 1000;
        //                  int n2 = count % 1000 / 100;
        //                  int n3 = count % 100 / 10;
        //                  int n4 = count % 10;
        //                  result = n1 + n2 + n3 + n4;
        //              }
        //              //判断 各个位上的和是否为7
        //              if (result == 7) {
        //                  Console.WriteLine (count);
        //                  temp++;
        //              }
        //
        //              count++;
        //          }
        //          Console.WriteLine (temp);
        //
        //          Console.WriteLine (temp);
        //          //又是一种算法啊,算法思想
        //          int num = 1234;
        //          int result = 0;
        //          int n2 = 1234 / 10; //12
        //          while (num != 0) {
        //              result += num % 10;
        //              num /= 10;
        //          }

        //          int count = 100;
        //          int num = 0;
        //          while (count >= 100 && count <= 10000) {
        //              //求加和
        //              int result = 0;
        //              //将count的值保存下来
        //              int temp = count;
        //              while (temp != 0) {
        //                  //取出个位
        //                  result += temp % 10;
        //                  //清除个位
        //                  temp /= 10;
        //              }
        //              //判断是否==7;
        //              if (result == 7) {
        //                  Console.WriteLine (count);
        //                  num++;
        //              }
        //              count++;
        //          }
        //          Console.WriteLine (num);


        //
        //          int count = 0;
        //          while (count < 10) {
        //              Console.WriteLine (count);
        //              break;
        //              count++;
        //          }
        //          while (int.Parse (Console.ReadLine ()) != -1) {
        //              
        //          }
        //          while (true) {
        //              Console.WriteLine ("请输入成绩");
        //              int score = int.Parse (Console.ReadLine ());
        //              //当输入是-1的时候停止循环
        //              if (score == -1) {
        //                  break;
        //              }
        //          }

        //如果while中嵌套了switch,那么
        //switch中的break,不会打断循环
        //          while(true){
        //              switch(1){
        //              case 1:
        //                  break;
        //                  default:
        //                  break;
        //              }
        //          }
        //          bool b = true;
        //          while (b) {
        //              Console.WriteLine ("请输入第一个数:");
        //              int num1 = int.Parse (Console.ReadLine ());
        //              Console.WriteLine ("请输入第二个数");
        //              int num2 = int.Parse (Console.ReadLine ());
        //              Console.WriteLine ("请输入+-*/进行运算(输入#退出)");
        //              switch (Console.ReadLine ()) {
        //              case "+":
        //                  Console.WriteLine (num1 + num2);
        //                  break;
        //              case "-":
        //                  Console.WriteLine (num1 - num2);
        //                  break;
        //              case "#":
        //                  b = !b;
        //                  break;
        //              default:
        //                  break;
        //              }

        //continue 只能使用在循环中
        //当循环
        //          int count = 0;
        //          while (count < 10) {
        //              Console.WriteLine (count);
        //              continue;
        //              count++;
        //          }
        //练习:打印从1-10中所有的偶数

        //          int count = 1;
        //          while (count <= 10) {
        //              if (count % 2 != 0) {
        //                  count++;
        //                  continue;
        //              }
        //              Console.WriteLine (count);
        //              count++;
        //          }
        //
        // do while
        //先执行代码,在判断条件
        //至少执行一次代码
        //除以上两点,和while 没有区别
        //          do {
        //              Console.WriteLine ("lanou");
        //          } while(false);
        //          int sum = 0;
        //          for (int i = 0; i <= 10; i++) {
        //              sum += i;
        //          }
        //          Console.WriteLine (sum);
        //





        int monye = 13;
        int year = monye * 320 * 60;
        Console.WriteLine (year);

    }

    //      class aMath
    //      {
    //          public int add (int n)
    //          {
    //              if (n > 1) {
    //                  return add (n - 1) + n;
    //              } else {
    //                  return 1;
    //              }
    //          }
    //      }
}

}
...

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容

  • 知识点: 注:int类型默认32位有大小范围 且第一位为符号位 0 为正 1 为负 8.4作业 A:1、风力预警系...
    cGunsNRoses阅读 1,086评论 0 0
  • using System; using System.Collections.Generic; using Sys...
    i_旅途阅读 3,381评论 0 1
  • using System; class Person { // 一个字段不加访问控制 默认是 private //...
    Class_Lee阅读 259评论 0 0
  • 守望 --陶醉2017.3.12 一所老屋 如矗立三十多年的盾 我们躲在柜子后 我们蜷缩在角落 和四季捉迷...
    闲敲棋子Ray阅读 212评论 0 1
  • 我还是很喜欢你 就像鸿雁在云,锦鱼在水 愿你青衫薄袖 一笑望穿千年 我还是很喜欢你 就像三生石旁,依依目光 愿你光...
    今心亦木阅读 370评论 0 3