[QT][原创]Qt Console的hello world实例
Posted FL1623863129
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[QT][原创]Qt Console的hello world实例相关的知识,希望对你有一定的参考价值。
1、新建项目:新建文件或项目
2、选择console项目:Qt Console Apllication-Choose
3、删除原来main函数填写下面代码
#include <QCoreApplication>
#include "stdio.h"
int Add(int a,int b)
{
return a+b;
}
int Add2(int a,int b)
{
return a+Add(a,b);//2a+b
}
int main()
{
int c=Add2(2,3);
printf("result is:%d\\n",c);
}
4、运行
以上是关于[QT][原创]Qt Console的hello world实例的主要内容,如果未能解决你的问题,请参考以下文章