23 lines
659 B
C#
23 lines
659 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace intVariable
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var i = 0; //语法糖 隐式推断变量类型 当前为int
|
|
int j = 1;
|
|
Console.WriteLine("请输入一个数字:");
|
|
string k = Console.ReadLine(); //此时为str类型
|
|
int n = i + j + int.Parse(k); // int.Parse() 类型转换为int类型
|
|
Console.WriteLine($"{i} + {j} + {k} = {n}"); // 格式化的字符串
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|