.C#认证考试试题汇编:第一单元:1,11 第二单元:1,11

2021-08-04 00:55

阅读:501

标签:tostring   缺点   key   value   赋值   col   color   ide   sys   第一单元1,11 好久没用异或都快忘了,就让我们一起来了解哈啥子事异或 说的这个,就不经意让我想起书上的几种交换值得方法了 我这儿说的交换的方法是,不使用第三个变量来交换,而是两个 实现条件是C a=100,b=10;第一种 缺点可能会如果超出范围溢出a=a+b; a=110,b=10b=a-b; b=100,a=110a=a-b; a=-10,b=100b=100,a=10;第二种 缺点可能会如果超出范围溢出a=a*b;a=1000,b=10b=a/b;b=100,a=1000a=a/b;a=10,b=100第三种 最理想例如:a=3,即11(2);b=4,即100(2)。想将a和b的值互换,可以用以下赋值语句实现: a=a∧b; b=b∧a; a=a∧b;a=011(2)(∧)b=100(2)(a∧b的结果,a已变成7)a=111(2)(∧)b=100(2)(b∧a的结果,b已变成3)b=011(2)(∧)a=111(2)(a∧b的结果,a已变成4)a=100(2) a=10100001,   b=00000110 a=a^b; //a=10100111 b=b^a; //b=10100001 a=a^b; //a=00000110 其实如果简单理解“相同为0”不同为1 如何还想在深入点,我只能说,小伙,咱家能力有限 using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text;using System.Threading.Tasks; namespace 习题1._11{ class Program { static void Main(string[] args) { string s_text, s_key, s_result = null; char ch; Console.WriteLine("请输入原字符串:"); s_text = Console.ReadLine().ToString(); Console.WriteLine("请输入密钥字符串"); s_key = Console.ReadLine().ToString(); if(s_text.Length!=s_key.Length) { Console.WriteLine("密钥字符串与原字符串长度必须相等"); return; //提前结束程序 } for(int i=0;i


评论


亲,登录后才可以留言!