หน้าเว็บ
หน้าแรก
CPP
Java
PHP
JSP
Programs
Tips
วันเสาร์ที่ 7 กันยายน พ.ศ. 2556
[CPP]รับข้อความ ที่สามารถเว้นวรรคได้ โดยใช้ตัวแปรเดียวด้วย Getline
:::: CODE ::::
#include <iostream>
#include <string>
using namespace std;
int main()
{
string name;
cout << "Please Enter your full name : ";
getline(cin,name);
cout<<"Your Input \""<<name<<"\""<<endl;
}
บทความใหม่กว่า
บทความที่เก่ากว่า
หน้าแรก