Win7下刚装好Qt后使用debug的话会提示no debugger setup,不能调试。
Windows 平台需要用户自己安装Windows debugger,Qt自己不带
去 https://msdn.microsoft.com/en-us/windows/hardware/hh852365 下载
最下面,左下 Standalone Debugging Tool...
static void Main(string[] args) { while (true) { try { Console.Write("请输入一个数:"); int n = Convert.ToInt32(Console.ReadLine()); int i = 1; int s = 0, z....
分类:
其他好文 时间:
2015-04-02 20:51:02
阅读次数:
152
static void Main(string[] args) { DateTime dt = DateTime.Now; Console.WriteLine(dt); DateTime nz = Convert.ToDateTime("2015-4-2 17:00"); //将nz的时间转换为电....
分类:
其他好文 时间:
2015-04-02 20:47:09
阅读次数:
144
declare @filename nvarchar(100) set @filename='H:/backOrder/'+ convert(varchar(50),getdate(),112)+ left(right(convert(varchar(50),getdate(),120),8),2)...
分类:
数据库 时间:
2015-04-01 16:52:06
阅读次数:
254
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2.
(each operation is counted as 1 step.)
You have the following 3 operations permitted on a word:...
分类:
其他好文 时间:
2015-04-01 11:29:06
阅读次数:
143
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.题解:递归就可以了。Java代码如下: 1 /** 2 * Definition for binary ....
分类:
其他好文 时间:
2015-04-01 00:16:07
阅读次数:
96
1.判断两个string类型日期string BeginTime;string EndTime;if(DateTime.Parse(BeginTime)>DateTime.Parse(EndTime))2.两个日期相减得到天数DateTime t1 = Convert.ToDateTime("199...
class Program { static void Main(string[] args) { while (true) { int a, b; int s = 0; Console.WriteLine("请输入第一个数:"); a = Convert.ToInt32(Console.Read....
分类:
其他好文 时间:
2015-03-31 20:00:27
阅读次数:
123
static void Main(string[] args) { while (true) { int ct=0,xt=0,yt=1,zt=1,m; Console.WriteLine("请输入月数:"); m = Convert.ToInt32(Console.ReadLine()); for....
分类:
其他好文 时间:
2015-03-31 19:53:47
阅读次数:
121
namespace 纸张的厚度循环{ class Program { static void Main(string[] args) { while (true) { double a; Console.WriteLine("请输入纸张的厚度:(毫米)"); a =Convert.ToDouble(...
分类:
其他好文 时间:
2015-03-31 19:49:49
阅读次数:
83