标签:temp int 设置 字符串 用处 div lin bsp 二次
1.占位符学习及练习及控制台用户输入练习
1 Console.WriteLine("请输入用户名:"); 2 string str1 =Console .ReadLine (); 3 Console.WriteLine("请输入密码:"); 4 string str2 = Console .ReadLine (); 5 Console.WriteLine("请确认您的密码."); 6 string str3 = Console .ReadLine (); 7 if (str2 == str3) //两次密码进行对比 8 { 9 Console.WriteLine("您的用户名为:{0},密码为:{1}", str1, str2);//两次密码一样,则输出这句 10 } 11 else 12 { 13 Console .WriteLine("您输入的用户名为:{0},第一次密码为:{1},第二次密码为:{2},两次密码不匹配,无法完成设置!",str1,str2,str3 );//如果两次密码不一样,则输出 14 15 } 16 Console.ReadKey();
2.变量值的交换方法
1 //方法一: 2 int age1 = 18, age2 = 35; 3 int temp = age1; 4 age1 = age2; 5 age2 = temp; 6 console.writeline("age1={0},age2={1}", age1, age2); 7 console.readkey(); 8 9 //方法二: 10 int age1 = 18, age2 = 35; 11 age1 = age2 + (age2 = age1) * 0; 12 Console.WriteLine("age1={0},age2={1}", age1, age2); 13 Console.ReadKey();
3.转义字符
当我们需要在字符串中输入一些特殊字符时如:半角引号,换行符,退格等;
转义字符是一个字符char类型;他由一个\+一个字母组成
1 \n //换行符 2 \b //退格.会删除此符前面的一个字符 3 \t //相当于键盘的tab键,由多个空格组成的一个字符,具有行与行之间对齐的功能 4 \\ //输出一个\. 5 \" //输出一个引号
6 @ //用法.加在字符串前面如@"d:\windows\",两种用处,1.字符串中如果有/,则告诉程序,不在理解为转义;2.使字符串可以换行3.在带有@符号的字符串中想输出一个引号可以用两个引号进行输出如:""
标签:temp int 设置 字符串 用处 div lin bsp 二次
原文地址:http://www.cnblogs.com/kentelove/p/7940630.html