c#中的应输入类型,命名空间定义或文件尾的错误

usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceConsoleApplicat... using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
double balance, interestRate, targetBalance;
Console.WriteLine("what is your current balance?");
balance = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("what is your current annual interest rate (in %)?");
interestRate = 1 + Convert.ToDouble(Console.ReadLine()) / 100.0;
Console.WriteLine("what balance would you like to have?");
targetBalance = Convert.ToDouble(Console.ReadLine());

int totalYears = 0;
do
{
balance *= interestRate;
++totalYears;
}
while (balance < targetBalance);
Console.WriteLine("In {0} year{1} you'll have a balance of {2}.", totalYears, totalYears == 1 ? "" : "s", balance);
Console.ReadKey();
}

}
}
}

说应输入类型,命名空间定义或文件尾的错误,在第33行,第一列 是什么原因?
麻烦大家帮我看看,没有分了,但是谢谢大家~!
展开
 我来答
dkxpsg
2009-02-12 · TA获得超过1627个赞
知道小有建树答主
回答量:592
采纳率:0%
帮助的人:1039万
展开全部
多了个大括号把最后那 } 个删了就行了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式