帮我用qt写一个计算器,给出代码
时间: 2023-03-10 14:41:18 浏览: 140
用qt实现计算器
我无法帮你用Qt写计算器,但是我可以给你一些参考代码,你可以参考它们来开发你自己的计算器:#include <QtWidgets>int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
window.resize(320, 240);
window.setWindowTitle("Calculator");
QGridLayout layout;
window.setLayout(&layout);
QLineEdit display;
layout.addWidget(&display, 0, 0, 1, 4);
QPushButton buttons[4][4];
for (int x = 0; x < 4; x++) {
for (int y = 0; y < 4; y++) {
buttons[x][y].setText(QString("%1").arg(4 * x + y + 1));
buttons[x][y].setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
layout.addWidget(&buttons[x][y], y + 1, x, 1, 1);
}
}
window.show();
return app.exec();
}
阅读全文