码迷,mamicode.com
首页 >  
搜索关键字:qt cin cout cerr    ( 22206个结果
Qt入门 - 全局数据类型
1 typedef signed char qint8; /* 8 bit signed */ 2 typedef unsigned char quint8; /* 8 bit unsigned */ 3 typedef short qint16; /* 16 bit signed */ 4 ty....
分类:其他好文   时间:2014-05-05 11:39:45    阅读次数:503
Codeforces Round #244 (Div. 2) B. Prison Transfer
题目是选出c个连续的囚犯,而且囚犯的级别不能大于t#include using namespace std;int main(){ int n,t,c; cin >> n >> t >> c; int a,cnt = 0, res =0;; for(int i = 0 ; i...
分类:其他好文   时间:2014-05-04 12:14:55    阅读次数:340
Codeforces Round #244 (Div. 2) A. Police Recruits
题目的意思就是找出未能及时处理的犯罪数,#include using namespace std;int main(){ int n; cin >> n; int a,recruit = 0, crimes = 0;; for(int i = 0 ; i > a; ...
分类:其他好文   时间:2014-05-04 11:54:32    阅读次数:274
linux环境下安装qt过程
linux(虚拟机fedora9)环境下安装qt的过程主要是按照下面几网页上的教程完成的。http://mobile.51cto.com/symbian-272869.htmhttp://www.cnblogs.com/emouse/archive/2013/01/28/2880142.htmlht...
分类:系统相关   时间:2014-05-04 11:36:10    阅读次数:313
基于Qt的信号分析简单应用软件的设计
一、需求描述: 1、读取data.asc文件,分析其连续性; 2、绘制信号图像,并保存。二、UI界面组成: 该应用的UI由以下几个控件组成: 3个PushButton:打开文件、图像保存、退出; 1个Combox:下拉框用于信号的选择; 1个Widget:用于确定绘图区域的坐标,并在Wi...
分类:其他好文   时间:2014-05-04 11:28:56    阅读次数:497
qt杂记_5月3日
测试中出错出错一# ./helloworld -qwsQWSServerSocket::init: Function not implementedQWSServerSocket: unable to create socket.QWSServerPrivate::initServer: serve...
分类:其他好文   时间:2014-05-04 09:56:40    阅读次数:322
Qt应用程序中设置字体
应用程序中经常需要设置字体,例如office软件或者是其他的编辑器软件等等。这里主要涉及到如下几个概念:字体,字号以及风格(例如:粗体,斜体,下划线等等)。Qt里面也有对应的类。接下来我们主要对这几个类进行详细的说明,最后举例说明它们的应用。 1、Qt中相关的类:QFontDatabase、QFont、QFontInfo和QFontMetrics、QFontMetricsF; (1)QFont...
分类:其他好文   时间:2014-05-04 09:29:54    阅读次数:505
hdu 1114 完全背包问题
题意:给定背包体积与物品的体积与价值 求正好放完的最小价值#includeusing namespace std;int min(int a,int b){ if(a>t; while(t--) { cin>>m1>>m2; m=m2-m1; ...
分类:其他好文   时间:2014-05-03 22:37:20    阅读次数:437
hdu 1087 最大上升子序列和
题意:求最大上升子序列和#includeusing namespace std;int main(){ int n,a[1001],b[1001],max; while(cin>>n&&n!=0) { for(int i=1;i>a[i]; b[1]=a...
分类:其他好文   时间:2014-05-03 22:29:38    阅读次数:282
配置QtCreator+CDB远程调试环境
相关环境信息:开发机Win7 x64、远程机器WinXP、调试器是CDB、Qt版本5.2.1 一、部署远程机器环境 我这里用的是虚拟机(Windows XP),根据你要调试的程序选择安装不同架构的WinDbg,因为安装文件不大,所以我一般都会装上 附上下载地址: dbg_i386_6.12.2.633:http://download.csdn.net/detail/aqtata/7...
分类:数据库   时间:2014-05-03 21:49:21    阅读次数:745
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!