คำถามติดแท็ก iostream

ไลบรารี C ++ iostream เป็นไลบรารีเชิงวัตถุที่จัดเตรียมฟังก์ชันอินพุตและเอาต์พุตโดยใช้สตรีม คลาส iostreams รองรับ I / O ประเภทบิวท์อินที่ปลอดภัยและสามารถขยายเพื่อรองรับประเภทที่ผู้ใช้กำหนดโดยการโอเวอร์โหลดตัวดำเนินการ >> และ <<

4
ทำไมเราถึงเรียก cin.clear () และ cin.ignore () หลังจากอ่านอินพุต
บทแนะนำ C ++ ของ Google Code Universityเคยมีรหัสนี้: // Description: Illustrate the use of cin to get input // and how to recover from errors. #include &lt;iostream&gt; using namespace std; int main() { int input_var = 0; // Enter the do while loop and stay there until either // a non-numeric …
86 c++  input  iostream  cin 

3
ความแตกต่างอย่างมาก (x9) ในเวลาดำเนินการระหว่างโค้ดที่เหมือนกันเกือบทั้งหมดใน C และ C ++
ฉันพยายามแก้แบบฝึกหัดนี้จาก www.spoj.com: FCTRL - Factorial คุณไม่จำเป็นต้องอ่านจริงๆแค่ทำถ้าคุณอยากรู้ :) ก่อนอื่นฉันติดตั้งในC ++ (นี่คือวิธีแก้ปัญหาของฉัน): #include &lt;iostream&gt; using namespace std; int main() { unsigned int num_of_inputs; unsigned int fact_num; unsigned int num_of_trailing_zeros; std::ios_base::sync_with_stdio(false); // turn off synchronization with the C library’s stdio buffers (from https://stackoverflow.com/a/22225421/5218277) cin &gt;&gt; num_of_inputs; while (num_of_inputs--) { cin &gt;&gt; fact_num; num_of_trailing_zeros …
85 c++  c  performance  gcc  iostream 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.