Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ตัวทำซ้ำเอาต์พุตในการเขียนโปรแกรม C ++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อทำความเข้าใจตัวทำซ้ำเอาต์พุตใน C++

ตัววนซ้ำเอาท์พุตเป็นส่วนหนึ่งของตัววนซ้ำหลักห้าตัว พวกมันทำงานตรงข้ามกับตัววนซ้ำอินพุตในลักษณะที่สามารถกำหนดค่าได้ แต่ไม่สามารถเข้าถึงเพื่อดึงค่าได้

ตัวอย่าง

#include<iostream>
#include<vector>
using namespace std;
int main(){
   vector<int>v1 = {1, 2, 3, 4, 5};
   //declaring iterator
   vector<int>::iterator i1;
   for (i1=v1.begin();i1!=v1.end();++i1){
      *i1 = 1;
   }
   return 0;
}

ผลลัพธ์

No output, because we cannot access values of output operators