我正在制作像使用结构的McDelivery系统一样的交付系统。 我有这个代码来存储客户的订单数据和他/她的信息。
struct customer
{
int contactno;
char firstname[20], lastname[20];
struct order
{
struct date
{
int day, month, year;
}orderdate;
}o;
}c;
然后我使用数组存储项目的信息,我有这个代码
int spaghetti[2], fries[2], icecream[2], MonsterMcBurger[2], SuicideBurger[2], VeggieWhooper[2], GrandSlam[2], BiscottiFrappuccino[2], CaptainCrunch[2], PizzaSub[2];
我插入每件商品的价格没有问题但是我在如何将商品的名称放在数组中时遇到了麻烦。是否可以在数组中分配文本?如果不是,我应该使用什么代码同时存储项目的名称和价格?
答案 0 :(得分:1)
#include <string.h>
int main() {
customer cust;
strcpy(cust.firstname, "John");
strcpy(cust.lastname, "Smith");
}
这是一种非常C
的做事方式; C++
可以更好地处理此问题,例如,使用std::string
。所以不是char firstname[20], lastname[20];
,而是std::string firstname, lastname;
,而你的作业看起来像这样:
int main() {
customer cust;
cust.firstname = "John";
cust.lastname = "Smith";
}
另外,为了回答你的问题,不可能按照你想要的方式为一组字符赋值see here for more。