edit test.cpp

This commit is contained in:
2021-03-08 22:09:33 +09:00
parent b44c711708
commit eebfc2db5e
4 changed files with 12 additions and 43 deletions

View File

@ -77,17 +77,17 @@ int main(int ArgiCnt, char** AppArgu)
_FFC_(ZCShowData2)
_FFS_(ZCShowData3)
(ZTypInt AiInt, ZCTuple& AR_CTuple)
(ZTypInt AiInt, ZCTuple* AP_CTuple)
{
cout<<"# Elem3 : "<< AiInt << ", nth=" << AR_CTuple._1++ << endl;
cout<<"# Elem3 : "<< AiInt << ", nth=" << AP_CTuple->_1++ << endl;
}/*
(ZTypInt AiInt, ZCTuple* AR_CTuple)*/
_FFC_(ZCShowData3)
_FFS_(ZCShowData4)
(ZTypInt AiInt, ZCTuple& AR_CTuple)
(ZTypInt AiInt, ZCTuple* AR_CTuple)
{
cout<<"# Elem4 : "<< AiInt << ", nth=" << AR_CTuple._1++ << endl;
cout<<"# Elem4 : "<< AiInt << ", nth=" << AP_CTuple->_1++ << endl;
}/*
(ZTypInt AiInt, ZCTuple* AR_CTuple)*/
_FFC_(ZCShowData4)