美文网首页
第十五课

第十五课

作者: 怡壹 | 来源:发表于2018-12-27 14:48 被阅读0次

    一、编写一个C#程序,实现输出1~100中所有不能被7整除的数,并求其和。

    Console.WriteLine("1-100之间不能被整除的数据为:");
    int [] a =new int [87];
    int c =1;
    int sum = 0;
    for (int i = 1; i < 101; i++)
    {
    if (i % 7 != 0)
    {
    a[c] = i;
    c++;
    }
    }
    for (int b = 1; b < c; b++)
    {
    Console.Write(a[b] + "\t");
    if (b % 4 == 0)
    {
    Console.WriteLine("");
    }
    }
    for (int d = 0; d <c ; d++)
    {
    sum = sum + a[d];
    }
    Console.WriteLine("\n" + "数据之和为:{0}", sum);
    Console.ReadKey();

    二、
    假设一个简单的在ATM的取款过程如下:首先提示用户输入密码(password),最多只能输入3次,超过3次则提示用户“密码错误,请取卡”结束交易。如果用户密码正确,再提示用户输入金额(amount),ATM只能输出100元的纸币,一次取线数要求最低0元,最高1000元。如果用户输入的金额符合上述要求,则打印输入用户取的钱数,最后提示用户“交易完成,请取卡”,否则,提示用户重新输入金额。
    假设用户密码111111。

       Console.WriteLine("请输入密码:");
        string password = "111111";
        int amount =0;
        for (int a = 0; a < 3; a++)
        {
            string pass= Console.ReadLine();
            if (pass != password)
            {
                Console.WriteLine("密码错误,请重新输入");
                continue;
            }
            else
            {
                Console.WriteLine("请输入金额:");
                amount =Convert.ToInt32(Console.ReadLine());
                break;
            }
        }
        for (int a = 0; a < 3; a++)
        {
            if (amount / 100 == 0 | amount < 0 | amount > 1000)
            {
                Console.WriteLine("你输入的金额不合法,请重新输入");
                amount = Convert.ToInt32(Console.ReadLine());
                continue;
            }
            else
            {
                Console.WriteLine("您取了{0}元", amount);
                Console.WriteLine("交易完成,请取卡");
                break;
            }
        }
        Console.ReadKey();
    

    相关文章

      网友评论

          本文标题:第十五课

          本文链接:https://www.haomeiwen.com/subject/bfirlqtx.html