Yurttas/PL/OOL/Cplusplus/F/06/02/01/03/io gs 03.cpp

From ZCubes Wiki
Jump to navigation Jump to search
 1/*
 2   Copyright(C) 2005
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9
10   date   : September 1, 2005.
11   author : Salih Yurttas.
12
13   io_gs_03.cpp
14*/
15
16
17#include <string>
18
19#include <iostream>
20#include <sstream>
21
22using namespace std;
23
24int main(int argc, char* argv[]) {
25
26  string s = "4 8 2";
27
28  istringstream ins;         // construct an input string stream object.
29
30  int a[3];
31
32  ins.str(s);                // specify input string.
33
34  for(int i=0; i<3; ++i)
35    ins >> a[i];             // input the integers from the string.
36
37  for(int i=0; i<3; ++i)
38    cout << a[i] << endl;
39
40}