我是《科索沃法典》的新篇章,而我是《塞浦路斯法典》的正文。 我正试图实施一个简单的用户投入方案,能够增加2个数字。 终端窗口给我带来0%的结果,我无法确定原因。 我现在要记住的是,编码是怎样的。 我使用的方法比我可能要多,但我只是试图击.。 我有一个MacBook Pro,如果这对我取得这一令人ir慕的结果有什么影响。 我将下面列出该守则,并列入我拍摄的屏幕。 感谢你们的帮助!
#include <iostream>
#include <cmath>
#include <math.h>
#include <iomanip>
using namespace std;
int x = 0;
int y = 0;
int z;
int main(){
cout << "We re going to multiply 2 numbers:" << /n ;
cout << "Input a number: ";
std::cin >> x;
std::cout << "Input a number: ";
cin >> y;
z = x * y;
std::cout << "Hello World! Your result is: " << z;
return (0);
}
终端窗口显示:
cd "/Users/sgette/Documents/C++ Projects/.vscode/" && g++ math.cpp -o math && "/Users/sgette/Documents/C++ Projects/.vscode/"math
sgette@Scotts-MacBook-Pro C++ Projects % cd "/Users/sgette/Documents/C++ Projects/.vscode/" && g+
+ math.cpp -o math && "/Users/sgette/Documents/C++ Projects/.vscode/"math
Input a number: 8
Input a number: 9
Hello World! Did you know that89is: 0%