void maxx(int a, int b, int c)
{
printf("%d, %d, %d\n", a, b, c);
}
int main(int argc, _TCHAR* argv[])
{
int i = 1;
printf("%d\n", i++);
maxx(i, ++i, i);
puts(" ");
maxx(i++, ++i, i);
return 0;
}
在原来的笔试题基础上稍微改动了一下,但和原题基本一致。答案如下折叠代码(请不要轻易打开:) )
View Code
1
3, 3, 3
4, 5, 5
麻烦相同了的朋友告知一下,谢谢!
【参考资料 感谢作者】
1、浩哥!!!
快捷操作:
坚其志,苦其心,劳其力,事无大小,必有所成。
@如有侵权,请作者本人尽快与我(chrayo#163.com)联系,我将及时删除侵权内容。