#include <iostream>
#include "stdlib.h"
using namespace std;
int main(int arg, char * args[])
{
cout << "Enter two numbers:" << endl;
int v1 = 0, v2 = 0;
cin >> v1 >> v2;
cout << "The number of" << v1 << "and" << v2 << endl;
system("pause");
return 0;
}
cpp 输入输出
最新推荐文章于 2025-03-20 23:11:57 发布