是否可以将我的 C++ 代码放入 window 而不是在命令提示符下打开?

Is it possible to put my c++ code into a window rather than opening in command prompt?

我的代码是:是否可以将它放在 window 中而不是打开命令提示符,因为我觉得这样会更方便用户使用?并且整体看起来会更好我已经在线搜索但没有找到任何方法将任何代码放入 window.

#include <iostream>

using namespace std;

int main()
{
    while (true) {
        string s;
        int n, i, m = 0, flag = 0;
        cout << "(press 'x' to exit) Enter the Number to check if It's a prime Number or not: ";
        cin >> s;

        if (s == "x")
            break;

        n = atoi(s.c_str());
        m = n / 2;

        for (i = 2; i <= m; i++)
        {
            if (n % i == 0)
            {
                cout << "That's not a prime number." << endl;
                flag = 1;
                break;
            }
        }
        if (flag == 0)
            cout << "That's a prime number." << endl;

    }
}

您可以关注microsoft docs tutorial for creating a window.

您将无法使用 std::coutstd::cin,因为它们是特定于控制台的。