计应191西 第二组 宣大卫 四则运算
作者:互联网
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入第一个数以Enter确认:");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入输入正确的运算符以Ender确认(+—*/)");
char zed = Convert.ToChar(Console.ReadLine());
Console.WriteLine("请输入第一个数以Enter确认:");
int y = Int32.Parse(Console.ReadLine());
switch (zed)
{
case '+':
Console.WriteLine("结果为:{0}", x + y);
break;
case '-':
Console.WriteLine(" 结果为:{0}", x - y);
break;
case '*':
Console.WriteLine("结果为:{0}", x * y);
break;
case '/':
Console.WriteLine("结果为:{0}", x / y);
break;
case '%':
Console.WriteLine("请输入正确的运算符!");
break;
}
}
}
}
任务内容 | 计划共完成需要的时间(h) | 实际完成需要的时间(h) |
---|---|---|
计划 | 5 | 6.5 |
开发 | 3.5 | 5 |
需求分析 (包括学习新技术) | 0.5 | 0.5 |
· 生成设计文档 | 0.5 | 0.5 |
· 设计复审 (和同事审核设计文档) | 0.5 | 0.5 |
代码规范 (为目前的开发制定合适的规范) | 0.5 | 0.5 |
具体设计 | 0.5 | 2 |
具体编码 | 0.5 | 0.5 |
· 代码复审 | 0.5 | 0.5 |
· 测试(自我测试,修改代码,提交修改) | 0.5 | 1 |
报告 | 1.5 | 1.5 |
· 测试报告 | 0.5 | 0.5 |
计算工作量 | 0.5 | 0.5 |
· 事后总结 ,并提出过程改进计划 | 0.5 | 0.5 |
这次的作业,让我从明白了自己的基础是多么的差,从开始的迷茫到后来的一点一点摸索,算是完整的独立完成了任务。我也认识到了任何项目提前做好规划的重要性,收集好资料也是非常重要的一步。
在编写代码的过程中,出现了很多我的所学没有解决的问题,依靠着网络的方便快捷解决了大多问题。
最后真的是感觉自己的学习有很大问题,这些基础都不会,以后一定加强基础学习,增强自己的专业水平。
标签:Console,191,0.5,System,break,计应,WriteLine,using,第二组 来源: https://www.cnblogs.com/realdavid/p/14645920.html