关于程序编译后出现的异常

关于程序编译后出现的错误
为何我的编程软件编译后总有错误,错误内容:error: expected ';' before '}' token
  error: stray '\254' in program
用过code block,dev均出现此错误,且程序代码没有错误。求高人指教,新手小白谢谢

------解决方案--------------------
探讨

#include<stdio.h>
void main()
{
int money;
int onefen=0,twofen=0,fivefen=0,onejiao=0;
printf("输入需要找零的钱(分为单位):");
scanf("%d",&amp;money);
while(money>=10){onejiao++;money-=1……

------解决方案--------------------
C/C++ code
printf("一角%d,五分%d,二分%d,一分%d",onejiao,fivefen,twofen,onefen);