#include<iostream.h> #include<stdarg.h> void main() { int printf(char*...); char *str="C++ language"; float f=34.5; printf("%s,%d,%c,%%,%f\n",str,25,'c',f); } int&...
阅读全文
2008
05-01