《C++捷徑教程》讀書筆記–Chapter 5–數組和字串(第二部分)

來源:互聯網
上載者:User

//--《C++捷徑教程》讀書筆記--Chapter 5--數組和字串(第二部分)
//--Chapter 5--數組和字串
//--11/11/2005 Friday
//--Computer Lab
//--Liwei

//--程式#17  二維數組
#include <iostream>
using namespace std;
void f1();

int main()
{
   f1();
   f1();
   cout<<endl<<"======================="<<endl;
   //getchar();
   return 0;
}

void f1()
{
   char s[80]="This is a test./n";
   cout<<s;

   strcpy(s,"CHANGED./n");
   cout<<s;
}

//--程式#18  字串數組
#include <iostream>
#include <cstdio>
using namespace std;

int main()
{
   int t,i;
   char text[100][80];

   for(t=0;t<100;t++)
   {  
    //int len;
    cout<<t<<": ";
    gets(text[t]); //如果沒輸入而按下enter鍵時,返回長度為0的字串(第一個字元是

'/0')
    //len=gets(text[t]);
    //cout<<"len: "<<len<<endl;
       if(!text[t][0])
    {
       cout<<"empty char is: "<<text[t]<<endl;
    break;
    }
    
   }

   for(i=0;i<t;i++)
    cout<<i<<": "<<text[i]<<endl;

   cout<<endl<<"======================="<<endl;
   //getchar();
   return 0;
}

//--程式#19  一個簡單的僱員資料庫程式
#include <iostream>
using namespace std;

char name[10][80];
char phone[10][20];
float hours[10];
float wage[10];

int menu();
void enter(),report();//這麼聲明函數

int main()
{
   int choice;
   do{
      choice=menu();
   switch(choice){
      case 0: break;
   case 1: enter();
        break;
   case 2: report();
        break;
         default:cout<<"Try again./n/n";
   }
   }while(choice!=0);

   cout<<endl<<"======================="<<endl;
   //getchar();
   return 0;
}

int menu()
{
   int choice;
   cout<<"0. Quit./n";
   cout<<"1. Enter information./n";
   cout<<"2. Report information./n";
   cout<<"/nChoose one: ";
   cin>>choice;
  
   return choice;
}

void enter()
{
   int i;
  
   for(i=0;i<10;i++){
      cout<<"Enter last name: ";
   cin>>name[i];
   cout<<"Enter phone number: ";
   cin>>phone[i];
   cout<<"Enter number of hours worked: ";
   cin>>hours[i];
   cout<<"Enter wage: ";
   cin>>wage[i];
   }//for
}

void report()
{
   int i;
  
   for(i=0;i<10;i++){
      cout<<name[i]<<' '<<phone[i]<<endl;
      cout<<"Pay for the week: "<<wage[i]*hours[i]<<endl;
   }//for
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.