-2
在C++中,iostream會在cin後自動添加新行。有沒有辦法擺脫這個?停止C++新行cin
我想用了iomanip信息以表格形式呈現,像這樣:
cin cout 0.078125 3DA00000 -8.75 C10C0000 23.5 41BC0000
(隨機數)
示例代碼:
#include <iostream>
using namespace std;
int main()
{
int num;
cin >> num; //now a new line.
cout << num << endl;
return 0;
}
目前還不清楚你在問什麼。發佈你的代碼可能會有幫助。 –
是的,請發佈你的代碼 – Sean
如果你有兩個獨立的問題,你應該在兩個單獨的帖子中問他們。 – Hurkyl