文章目录
Problem 1:控制台程序Hello
题目描述
编写控制台程序,输出 Hello
答案
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello");
Console.ReadLine();
}
}
}
Problem 2:整数A+B
题目描述
程序读取输入的两个整数(共两行,每行一个整数),计算并输出A+B的结果
答案
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
string s = Console.ReadLine()