计算器,按照运算法则运算
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-12
16)) { numbers(3); } if ((Key.isDown(52) || Key.isDown(100)) && !Key.isDown(16)) { numbers(4); } if ((Key.isDown(53) || Key.isDown(101)) && !Key.isDown(16)) { numbers(5); } if ((Key.isDown(54) || Key.isDown(102)) && !Key.isDown(16)) { numbers(6); } if ((Key.isDown(55) || Key.isDown(103)) && !Key.isDown(16)) { numbers(7); } if ((Key.isDown(56) || Key.isDown(104)) && !Key.isDown(16)) { numbers(8); } if ((Key.isDown(57) || Key.isDown(105)) && !Key.isDown(16)) { numbers(9); } // A键 if (Key.isDown(65)) { numbers("A"); } // B键 if (Key.isDown(66)) { numbers("B"); } // C键 if (Key.isDown(67)) { numbers("C"); } // D键 if (Key.isDown(68)) { numbers("D"); } // E键 if (Key.isDown(69)) { numbers("E"); } // F键 if (Key.isDown(70)) { numbers("F"); } // F9 键 if (Key.isDown(120)) { minuss(); } //.键 if (Key.isDown(110)) { dot(); } //BackSpace键 if (Key.isDown(8)) { BackSpace(); } //ESC 键 if (Key.isDown(27)) { C(); } // delete 键 if (Key.isDown(46)) { CE(); } //+键 if (Key.isDown(107)) { plus(); } //-键 if (Key.isDown(109)) { minus(); } //*键或shift+8 if (Key.isDown(106) || (Key.isDown(56) && Key.isDown(16))) { multiply(); } // /键 if (Key.isDown(111) || Key.isDown(191)) { except(); } //shift+2 if (Key.isDown(50) && Key.isDown(16)) { sqrt(); } //Enter if (Key.isDown(13)) { equal(); } //shift+5 if (Key.isDown(53) && Key.isDown(16)) { percent(); } // R键 if (Key.isDown(82)) { reciprocal(); } //ctrl+L if (Key.isDown(76) && Key.isDown(17)) { MC(); } //ctrl+R if (Key.isDown(82) && Key.isDown(17)) { MR(); } //ctrl+M if (Key.isDown(77) && Key.isDown(17)) { MS(); } //ctrl+P if (Key.isDown(80) && Key.isDown(17)) { MP(); } //P键 if (Key.isDown(80)) { PI(); } //T键 if (Key.isDown(84)) { tan(); } //ctrl+T if (Key.isDown(84) && Key.isDown(17)) { atan(); } //S键 if (Key.isDown(83)) { sin(); } //ctrl+S if (Key.isDown(83) && Key.isDown(17)) { asin(); } //O键 if (Key.isDown(79)) { cos(); } //ctrl+O if (Key.isDown(79) && Key.isDown(17)) { acos(); } //ctrl+2 if (Key.isDown(50) && Key.isDown(17)) { pow2(); } //;键 if (Key.isDown(186)) { this.int(); } //ctrl+; if (Key.isDown(186) && Key.isDown(17)) { aint(); } //V键 if (Key.isDown(86)) { FtoE(); } //shift+9 if (Key.isDown(57) && Key.isDown(16)) { leftBracket(); } //shift+0 if (Key.isDown(48) && Key.isDown(16)) { rightBracket(); } //shift+3 if (Key.isDown(51) && Key.isDown(16)) { pow3(); } //Y键 if (Key.isDown(89)) { pow(); } //N键 if (Key.isDown(78)) { log(); } //shift+N if (Key.isDown(78) && Key.isDown(16)) { exp(); } //L键 if (Key.isDown(76)) { Exp(); } //shift+! if (Key.isDown(49) && Key.isDown(16)) { factorial() |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于计算器,按照运算法则运算的所有评论