#include <iostream>
void xprintf(){}
template <typename T, typename... Targs>
void xprintf(T value, Targs... Fargs)
{
std::cout << sizeof...(Fargs) << " " << value << std::endl;
xprintf(Fargs...);
}
int main()
{
xprintf("小明个人信息:", "小明", "男", 35, "程序员", 169.5);
return 0;
}
08-26
657
03-20
276
06-21
1117
02-28
1004
02-23
237