本文介绍了帮助(* Ptr)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,


我想制作一个模拟借记卡动作的系统。

这个系统必须保留卡的数量,添加用户的名称,以及每张卡的发布日期以及最后一次移动的日期和类型的
。系统必须允许创建,删除,改变b
并列出卡片。我已经开发了一些代码,但是

现在我在这种情况下遇到了问题...


void Insert_card(PtrCl * lista)

{

工作得很好

}

无效Change_card(PtrCl * lista)

{

工作得很好

}

void Remove_card(PtrCl * lista)

{

工作很好

}

无效Ver_cards(PtrCl * lista)

{

我无法关联void trans_cards(PtrCl

* lista)的多个记录数据。每张卡

}

无效trans_cards(PtrCl * lista)

{

}

任何人都可以在这方面提供帮助。


提前致谢!!!

Hi Everyone,

I want to make a system that simulates the movements of a debit card.
This system must keep the numbers of card, name of added users, as well
as the date of the emission of each card and the dates and type of the
ten last movements. The system must allow to create, to erase, to
change and to list the cards. I have Already developed some code, but
now I′ve a problem in this situation...

void Insert_card (PtrCl *lista)
{
work′s well
}
void Change_card (PtrCl *lista)
{
work′s well
}
void Remove_card (PtrCl *lista)
{
work′s well
}
void Ver_cards(PtrCl *lista)
{
I cant associate more than one record data of "void trans_cards(PtrCl
*lista)" per card
}
void trans_cards(PtrCl *lista)
{
}
Can anyone help in this regard.

Thanks in advance!!!

推荐答案





啊,我明白了。错误在第42行,检查你的代码。

-

:wq

^ X ^ Cy ^ K ^ X ^ C ^ C ^ C ^ C

Ah, I see. The error is at line 42, check your code.
--
:wq
^X^Cy^K^X^C^C^C^C


这篇关于帮助(* Ptr)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-08 18:21