马上加入IBC程序猿 各种源码随意下,各种教程随便看! 注册 每日签到 加入编程讨论群

C#教程 ASP.NET教程 C#视频教程程序源码享受不尽 C#技术求助 ASP.NET技术求助

【源码下载】 社群合作 申请版主 程序开发 【远程协助】 每天乐一乐 每日签到 【承接外包项目】 面试-葵花宝典下载

官方一群:

官方二群:

四则运算程序

  [复制链接]
ibcadmin | 2014-12-2 10:37:08 | 显示全部楼层
a1005341055 发表于 2014-12-2 02:20
还是觉得有点不对   可不可以先随机出10道题   再输入答案来判断他的对错

Random  a = new Random();
string[] s = {"+","-","*","/"};
List<int> resultList = new   List<int>();
for(int j =0;j<10;j++)
{
         int n1= a.Next();// 第一个数
      int n2 = a.Next();//第二个数
      string sn = s[a.Next(4)];//运算符
      int  result = 0; //这是答案
     switch(sn)
{
     case "+":
result  = n1+n2;
      break;
   
case "-":
result  = n1-n2;
      break;
case "*":
result  = n1*n2;
      break;
case "/":
result  = n1/n2;
      break;
}
Console.WriteLine(n1.ToString() + sn + n2.ToString()+"=" );

resultList.Add(result);

}
Console.WriteLine("输入答案,每个答案用逗号分割“,” 英文逗号");
string str = Console.ReadLine();
  string[] arr= str.Split(',');
for(int i = 0;i<resultList.Count;i++;)
{
   if(Convert.ToInt32(arr)==resultList)
{
   Console.WriteLine("第"+i+"题正确");
}else
{
Console.WriteLine("第"+i+"题错误");
}
}
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
ibcadmin | 2014-12-2 10:38:28 | 显示全部楼层
if(Convert.ToInt32(arr)==resultList)   换成if(Convert.ToInt32(arr【i】)==resultList【i】)
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
a1005341055 | 2014-12-2 10:46:04 | 显示全部楼层
ibcadmin 发表于 2014-12-2 10:37
Random  a = new Random();
string[] s = {"+","-","*","/"};
List resultList = new   List();

有错误   if (Convert.ToInt32(arr) == resultList)   这个错了     说==无法应用于int和system.collections.generic.list<int>
ibcadmin | 2014-12-2 10:55:49 | 显示全部楼层
a1005341055 发表于 2014-12-2 02:46
有错误   if (Convert.ToInt32(arr) == resultList)   这个错了     说==无法应用于int和system.collecti ...

if(Convert.ToInt32(arr)==resultList)   换成if(Convert.ToInt32(arr【i】)==resultList【i】)   
你是不是一点都不会C#?  
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
a1005341055 | 2014-12-2 10:56:25 | 显示全部楼层
a1005341055 发表于 2014-12-2 10:46
有错误   if (Convert.ToInt32(arr) == resultList)   这个错了     说==无法应用于int和system.collecti ...

还是不行   有错误   
a1005341055 | 2014-12-2 11:00:32 | 显示全部楼层
a1005341055 发表于 2014-12-2 10:56
还是不行   有错误

刚刚那个我没有看到  后来看到给换了   还是不行的  
a1005341055 | 2014-12-2 11:07:19 | 显示全部楼层
a1005341055 发表于 2014-12-2 11:00
刚刚那个我没有看到  后来看到给换了   还是不行的

对不起  刚刚我有个没改  现在可以正常运行了  谢谢   
a1005341055 | 2014-12-2 11:11:12 | 显示全部楼层
a1005341055 发表于 2014-12-2 11:07
对不起  刚刚我有个没改  现在可以正常运行了  谢谢

我还想问下  如果我要改成窗体模式的  我应该改哪些
ibcadmin | 2014-12-2 15:44:58 | 显示全部楼层
a1005341055 发表于 2014-12-2 03:11
我还想问下  如果我要改成窗体模式的  我应该改哪些

光改Console.WriteLine 输出语句就行
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
*滑块验证:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则