摘要:
使用Windows Server 2012安装Visual Studio 2012后,出现了一个问题,在开启Visual Studio时,会显示『本产品使用权属于Windows 用户』,而不是我的用户名。经过探索,在国外某哥们网站找到了解决方案,原文如下:http://blog.brouwer.pro/2012/09/how-to-change-licensed-to-name-for-visual-studio-2012/过程如下:1、打开注册表编辑器(开始->运行->regedit,确定)2、定位到如下位置:HKEY_CURRENT_USER\Software\Microsof 阅读全文
摘要:
由于受到了DreamSpark学生认证,我用的是Windows Server 2012的正版系统,但有一个问题就是,这个系统不能玩扫雷。经过探索,在MSDN论坛上找到解决办法,原文如下:http://social.technet.microsoft.com/Forums/zh-CN/winserver8gen/thread/b64cdc31-7e2d-40b8-a45d-45a8203c5fde方法是,在Windows 8下找到System32和SysWOW64下的所有xaudio*.dll和xinput*.dll,然后复制到Windows Server 2012对应的文件夹下,过程很简单,只 阅读全文
摘要:
题目来自《算法》第四版习题1.3.9,原题如下:Write a program that takes from standard input an expression without left parentheses and prints the equivalent infix expression with the parentheses inserted. For example, given the input:1 + 2 ) * 3 - 4 ) * 5 - 6 ) ) )your program should print( ( 1 + 2 ) * ( ( 3 - 4 ) * ( 5 阅读全文