C#學習筆記(一) -console.WriteLine ReadLine

來源:互聯網
上載者:User
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace helloworld{    class Program    {        static void Main(string[] args)        {                       Console.WriteLine("abc" + 123); //abc123            //預留位置的形式            int i = 10;            int j = 20;            Console.WriteLine("{0}+{1}={2}",i,j,i+j);                         Console.WriteLine("請輸入男孩的名字");            string boy = Console.ReadLine();// 工具列中的 調試 - 全部中斷 能夠看到程式停在哪一行            Console.WriteLine("請輸入女孩的名字");            string girl = Console.ReadLine();            Console.WriteLine("{0}愛{1}", boy, girl);                         //顯示行號 工具-選項-文字編輯器-C#-常規-行號            //轉義符             //1 雙引號            string s = "\"ab\"";            Console.WriteLine(s);            //2分行符號            string s1 = "a\nb";            Console.WriteLine(s1);            //3斜線本身            string s2 = "c:\\text\\abc.txt";            Console.WriteLine(s2);            //4 強加@ 字串中的轉義符不生效            string s3 = @"\\\\";            Console.WriteLine(s3);            //5 轉義符只針對代碼中直接寫出的字串生效            Console.WriteLine("input 123\\n123");            string str = Console.ReadLine(); //輸入123\n123            Console.WriteLine(str); //輸出123\n123            //簡單的類型轉換            string s4 = Console.ReadLine(); //不能直接用int接收 輸入數字10            int i1 = Convert.ToInt32(s4); //將字串轉換為整數             string s5 = Console.ReadLine(); //輸入20            int i2 = Convert.ToInt32(s5);            Console.WriteLine("{0}+{1}={2}",i1, i2,i1+i2);//10+20=30            Console.ReadKey(); //按一下鍵 繼續執行        }    }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.