1. 程式人生 > >c++(002)學習輸入cin

c++(002)學習輸入cin

std name sin cout using urn clu col str

學習了輸入cin的使用

 1 #include <iostream>
 2 #include <cstdlib>
 3 
 4 using namespace std;
 5 
 6 int main(){
 7     int a;
 8     cin>>a;
 9     cout<<a<<endl; 
10     return 0;
11 }

c++(002)學習輸入cin