gpt4 book ai didi

c++ - 在不使用空格的情况下输入两个数据或输入

转载 作者:可可西里 更新时间:2023-11-01 18:39:29 25 4
gpt4 key购买 nike

在 C 中,scanf("%d : %d",&a,&b) 说输入 5:10 非常简单。所以这里 a=5 和 b=10。 (:)只需将它们分成两个作为一个单独的整数即可。我们如何在 C++ 中做在两个输入之间不使用空格或输入

int a,b;
cin>>a>>b; // how we take input two integer taking as 5:10
cout<<a<<b; // a=5 and b=10

最佳答案

int main()
{
int a, b;
char c;
std::cin >> a // Read first number,
>> c // oh, there is a character I do not need
>> b; // and read second
}

或者,如果您不喜欢必须声明备用变量,这也可以。

    std::cin >> a;
std::cin.ignore(1);
std::cin >> b;

关于c++ - 在不使用空格的情况下输入两个数据或输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37097971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com