终于在QT上用C写了个九九乘法表
Tofloor
poster avatar
133******01
deepin
2018-06-25 19:42
Author
     终于进步了  在QT上用C写了个九九乘法表  
Reply Favorite View the author
All Replies
1 / 2
To page
avatar
老陌
deepin
2018-06-25 20:05
#1
牛人啊,会写代码。。。。
Reply View the author
avatar
133******01
deepin
2018-06-25 20:14
#2
https://bbs.deepin.org/post/159346
牛人啊,会写代码。。。。

你照样学的会  只是以前不知道怎么搭环境 。昨天才学会的
Reply View the author
avatar
nero28
deepin
2018-06-25 20:32
#3
环境要怎么搭,安装哪些软件呢?
Reply View the author
avatar
老陌
deepin
2018-06-25 20:32
#4
https://bbs.deepin.org/post/159346
你照样学的会  只是以前不知道怎么搭环境 。昨天才学会的

我也不会编程啊。
Reply View the author
avatar
s***7@gmail.com
deepin
2018-06-25 20:41
#5
https://bbs.deepin.org/post/159346
环境要怎么搭,安装哪些软件呢?

sudo apt install qtcreator qt5-default
Reply View the author
avatar
牧野
deepin
2018-06-25 20:45
#6
本帖最后由 muye 于 2018-6-25 12:49 编辑
https://bbs.deepin.org/post/159346
环境要怎么搭,安装哪些软件呢?

不用命令行。直接下载最新版本的qt5.11.1,双击安装开撸。http://download.qt.io/archive/qt/编译器选好,只安装桌面版本x86 GCC就好了,还支持arm andriod和x86 andriod。

Reply View the author
avatar
133******01
deepin
2018-06-25 22:19
#7
https://bbs.deepin.org/post/159346
sudo apt install qtcreator qt5-default

https://bbs.deepin.org/post/157889&highlight
Reply View the author
avatar
pingpp00
deepin
2018-06-25 22:24
#8
https://bbs.deepin.org/post/159346
不用命令行。直接下载最新版本的qt5.11.1,双击安装开撸。http://download.qt.io/archive/qt/编译器选好, ...

for i in `seq 1 9`;do for j in `seq 1 $i` ;do echo -ne $i*$j=$((i*j))\\t;done;echo;done
Reply View the author
avatar
linusboyle
deepin
2018-06-25 22:27
#9
楼主把qt用成ide了啊
也行吧……fake vim挺不错的,作为idea也算可以
不过这种程序用shell就行了,楼上有代码
Reply View the author
avatar
s***7@gmail.com
deepin
2018-06-26 00:43
#10
https://bbs.deepin.org/post/159346
for i in `seq 1 9`;do for j in `seq 1 $i` ;do echo -ne $i*$j=$((i*j))\\t;done;echo;done

我。。。能仅通过一条命令解决的绝不多点一下鼠标
Reply View the author
Comments
lulinux
2018-06-26 01:07
一条shell命令就可以搞定,牛
avatar
海天鹰
deepin
2018-06-26 01:28
#11
乘号*改成X啊
Reply View the author
avatar
jianguo922
deepin
2018-06-26 01:33
#12
厉害厉害
Reply View the author
avatar
justforlxz
deepin
2018-06-26 03:28
#13
大一的时候老师也让我们写过,教的双重for。
Reply View the author
avatar
pa******hg@hotmail.com
deepin
2018-06-26 05:04
#14
9x9乘法表不需要用Qt吧。。。
Reply View the author
avatar
h3l
deepin
2018-06-26 08:30
#15
看我去抄一段python来装逼。




Reply View the author
Comments
kirigaya
2018-06-26 15:51
py大佬
avatar
cgp
deepin
2018-06-26 15:58
#16
应用商店有Qt creator,直接安装也是可以的。
Reply View the author
avatar
136******29
deepin
2018-06-26 16:25
#17
qt主要功能是界面展示,你应该使用qt creator开发环境吧
Reply View the author
avatar
Gaoy9303
deepin
2018-06-26 16:45
#18
咋不直接gcc去编译,为毛要搞个qt呢?
Reply View the author
avatar
牧野
deepin
2018-06-26 16:58
#19
https://bbs.deepin.org/post/159346
我。。。能仅通过一条命令解决的绝不多点一下鼠标

没时间研究这种复杂的命令,不用费脑子一路单击能搞定的问题,干嘛要费那么多的脑细胞。还是把脑细胞用在真正的撸码上吧。
Reply View the author
avatar
h3l
deepin
2018-06-26 18:33
#20
https://bbs.deepin.org/post/159346
看我去抄一段python来装逼。

我说了是抄的,夸得我措手不及毫无防备:
https://www.zhihu.com/question/50034227
Reply View the author
1 / 2
To page