如何在 C++ 中打印字符数组

how can I print a char array in c++

本文关键字:打印 字符 数组 C++      更新时间:2023-10-16

我正在从事一个简单的酒店预订项目,但在输入客户姓名后无法打印客户姓名和付款类型。这是我键入的代码段。

 cout << "Please enter the customer name: " << endl;
 cin >> customername1;
 cin.getline(customername1,100,'n');
 fflush(stdin);
 cout << "Please enter the payment type: " << endl;
 cin >> paymenttype;
 cin.getline(paymenttype,100,'n');
 fflush(stdin);
 cout << "How many days would you like to stay: " << endl;
 cin >> days;
 room_income = days * 30;
 count_room++ ;
 count_customer1++ ;
 customer_name1[single]= new char [strlen(customername1)+1]; 
 strcpy(customer_name1[single],customername1); 
 payment_type[single]= new char [strlen(paymenttype)+1]; 
 strcpy(payment_type[single],paymenttype);
 cout << "Room number : " << single << endl<< endl;
 cout << "Customer name : "<< customer_name1 << endl << endl;
 cout << "Payment type : "<< payment_type << endl<< endl;
 cout << "Number of day for accomodation :"<< days << endl<< endl;
 cout << "Income for this room : "<< room_income<< endl<< endl;

对于客户名称和付款类型,将显示一些随机数字和字母。如何正确编写它们?

对于客户名称和付款类型,您尝试打印数组,而不是一个元素。由于数组基本上只是指向第一个元素的指针,因此您将获得一个"随机数",即内存地址。

尝试:

cout << "Customer name : "<< customername1 << endl << endl;
cout << "Payment type : "<< paymenttype << endl<< endl;

当你工作起来时,按照评论并查看 std::string 和向量......