嗨,我是 QT 新手,我需要一个程序来从行编辑中获取输入,并使用这些值使用这些值执行一些操作,然后将输出提供给行编辑....我写了一些代码,但它不起作用....请核实。代码:
enter code here
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
int x,az,el,EL,AZ,a,b,c,d,e,f,g,X,Y,y;
QLineEdit lineEdit
QString az=lineEdit1->text();
QString el=lineEdit2->text();
AZ=((az*pi)/180);
EL=((el*pi)/180);
a=sin(AZ);
b=cos(AZ);
c=cos(EL);
d=cot(EL);
e=b*d;
f=-1*e;
X=atan(f);
g=c*a;
Y=asinn(g);
x=(X*180)/pi;
y=(Y*180)/pi;
this->ui->lineEdit3->setText("x");
this->ui->lineEdit4->setText("y");
}