Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include<iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; }
当我编译它时,每个整数都会被询问,就像endl它们之间存在一样。我怎样才能写出这样程序要求a,b并c在一行和之间的空格?
endl
a
b
c