本帖最後由 張健勳 於 2016-8-13 11:07 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void ifschoose(int choose){
- int i;
- float a;
- string j[3];
- if(choose==1){
- cout<<"請輸入數字"<<endl;
- cin>>i;
- cout<<"記憶體為"<<sizeof(i)<<endl;
- }
- else if(choose==2){
- cout<<"請輸入為中文字"<<endl;
- for(int x=0 ; x<3 ; x++)
- cin>>j[x];
- cout<<"記憶體為"<<sizeof(j)<<endl;
- }
- else if(choose==3){
- cout<<"請輸入小數"<<endl;
- cin>>a;
- cout<<"記憶體為"<<sizeof(a)<<endl;
- }
- }
- int main(){
- int choose;
- cout<<"請問你想輸入什麼 (1)數字(2)中文字(3)小數: "<<endl;
- cin>>choose;
- ifschoose(choose);
- system("pause");
- return 0;
- }
複製代碼 |