标题:请帮我改正下错误
取消只看楼主
l7556950
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2011-10-5
 问题点数:0 回复次数:1 
请帮我改正下错误
下面的代码该怎样改正。搞了半天都不懂。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 函数对比大小值
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = Convert.ToInt32(Console.ReadLine());
            int b = Convert.ToInt32(Console.ReadLine());
            int k =minnum(a, b); //就这里有问题
            Console.WriteLine(k);
        }

        int minnum(int a, int b)
        {
            int c = 0;
            if (a > b)
            {
                c =b;
            }
            else if (a < b)
            {
                c =a;
            }
            return c;
        }
    }
}
搜索更多相关主题的帖子: class using 
2011-10-05 00:20
l7556950
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2011-10-5
得分:0 
谢谢。
2011-10-05 01:57



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-351592-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.052231 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved