C#编写的windows计算器-源代码(43) // 点击了小数点 if(dot==HASDOT) return; else { dot = HASDOT; dotnum = 0; } break; case "+/-": // 点击了符号运算 if(tmp!=0) { tmp = -tmp;