摘要:
(转)VC++编程中,我们可以为自己的程序加入音乐,比如当我们按下一个按钮时或者启动程序时,播放一小段音乐。PlaySound函数的声明为:BOOLPlaySound(LPCSTRpszSound,HMODULEhmod,DWORDfdwSound);PlaySound(NULL,NULL,NULL... 阅读全文
摘要:
#include CMap MapItemColor;编译时出错:#includemapmymap;出错如下::errorC2143:syntaxerror:missing';'before'而且我刚才用我的MFC工程按照你的方式做了一下,是不存在编译方面的问题的。我发觉你问题的原因是对afxtem... 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_906d892d0102vmyu.html 阅读全文
摘要:
#include "stdio.h"main(){int a,b,c,temp;printf("输入三个整数:\n");scanf("%d%d%d",&a,&b,&c);if (a>=b) {temp=a;a=b;b=temp;}if (a>=c) {temp=a;a=c;c=temp;}if (b... 阅读全文