我是靠谱客的博主 神勇衬衫,最近开发中收集的这篇文章主要介绍基于.net的应用开发技术-上机一,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目一:分别控制台SDK方式及集成开发IDE方式编写C#程序,显示输出字符串“这是我的第一个C#程序。”。

源程序:

SDK方式(记事本输入)

新建一个txt文本文件

using System;
namespace Test{
	class Hello{
		static void Main(string[] args){
			Console.WriteLine("这是我的第一个C#程序。");
			Console.ReadKey();
}
}
}

 命令行输入:    cd /     (切换至新建txt文件对应的目录)

             csc test.cs

             test

 IDE方式:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("这是我的第一个C#程序。");
            Console.ReadKey();
        }
    }
}

题目二:分别按int,long,float,double类型定义两个变量并赋初值,并计算同类型变量的和、差、积、商,最后输出相应的运算结果。

源程序:

int型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            int a = 30;
            int b = 20;
            Console.WriteLine("两数之和:"+(a + b));
            Console.WriteLine("两数之差:" + (a - b));
            Console.WriteLine("两数之积:" + (a * b));
            Console.WriteLine("两数之商:" + (a / b));
            Console.ReadLine();
        }
    }
}

long型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            long a = (long)300;
            long b = (long)200;
            Console.WriteLine("两数之和:"+(a + b));
            Console.WriteLine("两数之差:" + (a - b));
            Console.WriteLine("两数之积:" + (a * b));
            Console.WriteLine("两数之商:" + (a / b));
            Console.ReadLine();
        }
    }
}

 float型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            float a = (float)15.5;
            float b = (float)32.9;
            Console.WriteLine("两数之和:"+(a + b));
            Console.WriteLine("两数之差:" + (a - b));
            Console.WriteLine("两数之积:" + (a * b));
            Console.WriteLine("两数之商:" + (a / b));
            Console.ReadLine();
        }
    }
}

double型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            double a = (double)54.8;
            double b = (double)11.9;
            Console.WriteLine("两数之和:"+(a + b));
            Console.WriteLine("两数之差:" + (a - b));
            Console.WriteLine("两数之积:" + (a * b));
            Console.WriteLine("两数之商:" + (a / b));
            Console.ReadLine();
        }
    }
}

题目三:试编程,从键盘任意输入两个整数分别赋值给a和b,并比较两个数的大小,按从小到大的顺序输出两个数。

源程序:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            int a,b,temp;
            Console.WriteLine("请输入第一个数:");
            a = int.Parse(Console.ReadLine());
            Console.WriteLine("请输入第一个数:");
            b = int.Parse(Console.ReadLine());
            if (a >b)
            {
                temp = a;
                b= temp;
                a = b;
            }
            Console.WriteLine("结果为:"+a+"<"+b);
            Console.ReadKey();

        }
    }
}

 源程序:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyExer1
{
    internal class Program
    {
        static void Main(string[] args)
        {
           int x,y = 0;
            Console.WriteLine("请输入一个整数:");
            x=int.Parse(Console.ReadLine());
            if (x >= 1)
            {
                y = y + 2 * x + 1;
            }
            else {
                y = y + 3 * x / (x - 1);
            }
            Console.WriteLine("结果为:" + y);
            Console.ReadKey();
        }
    }
}

最后

以上就是神勇衬衫为你收集整理的基于.net的应用开发技术-上机一的全部内容,希望文章能够帮你解决基于.net的应用开发技术-上机一所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部