简易计算器 [英] Easy calculator

查看:26
本文介绍了简易计算器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,我是一个自学C++的初学者。 今天我试着做一个简单的计算器,但调试器不断地向我显示相同的错误。统一变量使用"X";统一变量使用"Z"

代码如下:

#include <iostream>
using namespace std;

int main()
{
    float x, z, a;
    a = x + z;



    cout << "Welcome to the calculator" << endl;
    cout << "State the first number " << endl;
    cin >> x ;
    cout << "State the second number " << endl;
    cin >>  z ;
    cout << "If you wanted to time number" << x << "by this number" << z << "The result would be : " << a << endl;



    system("pause");
    return 0;
} 

推荐答案

做事的顺序很重要。

int x = 5, z = 2;

int a = x + z; // a is 7

z = 5; // a is still 7

a = x + z; // now a is updated to 10

因此,当您执行a = x + z;时,xz都未初始化。使用未初始化的变量是未定义的行为。

若要解决此问题,请在xz输入值后将a = x + z;移到。

这篇关于简易计算器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆