2005年11月04日 星期五 01:58
一个单位的笔试题目,求c语言实现: 2.如何输出源文件的标题和目前执行行的行数 3.两个数相乘,小数点后位数没有限制,请写一个高精度算法 4.写一个病毒 谢谢~ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051104/42d9ab4a/attachment.htm
2005年11月04日 星期五 02:32
On 11/4/05, Jihua Peng <jihua.peng at gmail.com> wrote: > 一个单位的笔试题目,求c语言实现: > > 2.如何输出源文件的标题和目前执行行的行数 > 3.两个数相乘,小数点后位数没有限制,请写一个高精度算法 > 4.写一个病毒 > 怎么没有1? 2. cout << __FILE__ << __LINE__; 3. 用数组模拟嘛。做过ACM题的人应该都会。 4. 现成的CIH交上去就好了。(完了再骂一句,BT公司) -- Best Regards, Leo Jay
2005年11月04日 星期五 07:59
在 05-11-4,Jihua Peng<jihua.peng at gmail.com> 写道: > 一个单位的笔试题目,求c语言实现: > > 2.如何输出源文件的标题和目前执行行的行数 感觉c语言编译了输出现在执行的行数,是不是有点BT呀,除非一行printf 行数 > 3.两个数相乘,小数点后位数没有限制,请写一个高精度算法 这个网上搜索应该有办法的 > 4.写一个病毒 你们公司离kill不远了,看样子好象是个安全公司呀 > -- /**************************************** * Love in Gentoo-Linux C and Python * * Look at my blog * * http://poorc.wordpress.com * ****************************************/
2005年11月04日 星期五 08:49
我在工作中正好遇到第2个问题,也想知道。 在05-11-4,赵光 <prolibertine at gmail.com> 写道: > > 在 05-11-4,Jihua Peng<jihua.peng at gmail.com> 写道: > > 一个单位的笔试题目,求c语言实现: > > > > 2.如何输出源文件的标题和目前执行行的行数 > > 感觉c语言编译了输出现在执行的行数,是不是有点BT呀,除非一行printf 行数 > > > 3.两个数相乘,小数点后位数没有限制,请写一个高精度算法 > > 这个网上搜索应该有办法的 > > > 4.写一个病毒 > > 你们公司离kill不远了,看样子好象是个安全公司呀 > > > > > > > -- > /**************************************** > * Love in Gentoo-Linux C and Python * > * Look at my blog * > * http://poorc.wordpress.com * > ****************************************/ > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 我就是我,是人间不一样的焰火. 我发现每个人都不是一下子就成功的 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051104/94f6d4b2/attachment.html
2005年11月04日 星期五 08:49
不是第三个,对不起 在05-11-4,Geoffery>>>嘎瑞>>>XuLi <geofferyli at gmail.com> 写道: > > 我在工作中正好遇到第2个问题,也想知道。 > > 在05-11-4,赵光 <prolibertine at gmail.com> 写道: > > > > 在 05-11-4,Jihua Peng<jihua.peng at gmail.com> 写道: > > > 一个单位的笔试题目,求c语言实现: > > > > > > 2.如何输出源文件的标题和目前执行行的行数 > > > > 感觉c语言编译了输出现在执行的行数,是不是有点BT呀,除非一行printf 行数 > > > > > 3.两个数相乘, 小数点后位数没有限制,请写一个高精度算法 > > > > 这个网上搜索应该有办法的 > > > > > 4.写一个病毒 > > > > 你们公司离kill不远了,看样子好象是个安全公司呀 > > > > > > > > > > > > > -- > > /**************************************** > > * Love in Gentoo-Linux C and Python * > > * Look at my blog * > > * http://poorc.wordpress.com * > > ****************************************/ > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > -- > 我就是我,是人间不一样的焰火. > 我发现每个人都不是一下子就成功的 > 升级中.................................. > http://groups-beta.google.com/group/moview 电影爱好者讨论组 > http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 > > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > -- 我就是我,是人间不一样的焰火. 我发现每个人都不是一下子就成功的 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051104/b66e16bb/attachment.htm
2005年11月04日 星期五 12:00
Leo Jay wrote: > On 11/4/05, Jihua Peng <jihua.peng at gmail.com> wrote: > >>一个单位的笔试题目,求c语言实现: >> >>2.如何输出源文件的标题和目前执行行的行数 >>3.两个数相乘,小数点后位数没有限制,请写一个高精度算法 >>4.写一个病毒 > > 怎么没有1? > 2. cout << __FILE__ << __LINE__; c语言实现...哪里来的cout?呵呵 > 3. 用数组模拟嘛。做过ACM题的人应该都会。 > 4. 现成的CIH交上去就好了。(完了再骂一句,BT公司) CIH有源码吗? -- Qiangning Hong, Registered Linux User #396996 My Blog: http://www.hn.org/hongqn RSS: http://feeds.feedburner.com/hongqn
2005年11月04日 星期五 12:07
在 05-11-4,Qiangning Hong<hongqn at gmail.com> 写道: > Leo Jay wrote: > > On 11/4/05, Jihua Peng <jihua.peng at gmail.com> wrote: > > > > 怎么没有1? > > 2. cout << __FILE__ << __LINE__; > > c语言实现...哪里来的cout?呵呵 最多有个puts()函数 > > > 3. 用数组模拟嘛。做过ACM题的人应该都会。 > > 4. 现成的CIH交上去就好了。(完了再骂一句,BT公司) > > CIH有源码吗? 这个CIH源代码到处都是呀,源代码是汇编语言写的,很巧妙的。 -- /**************************************** * Love in Gentoo-Linux C and Python * * Look at my blog * * http://poorc.wordpress.com * ****************************************/
2005年11月10日 星期四 18:39
源文件的标题和行数得用编译的预编译才行, __LINE__是当前行数,整型 __FILE__是当前文件名,字符串指针 在 2005-11-04五的 07:59 +0800,赵光写道: > 在 05-11-4,Jihua Peng<jihua.peng at gmail.com> 写道: > > 一个单位的笔试题目,求c语言实现: > > > > 2.如何输出源文件的标题和目前执行行的行数 > > 感觉c语言编译了输出现在执行的行数,是不是有点BT呀,除非一行printf 行数 > > > 3.两个数相乘,小数点后位数没有限制,请写一个高精度算法 > > 这个网上搜索应该有办法的 > > > 4.写一个病毒 > > 你们公司离kill不远了,看样子好象是个安全公司呀 > > > > > > > -- > /**************************************** > * Love in Gentoo-Linux C and Python * > * Look at my blog * > * http://poorc.wordpress.com * > ****************************************/ > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051110/9ad99ad7/attachment.html
Zeuux © 2025
京ICP备05028076号