diff --git a/intVariable/App.config b/intVariable/App.config
new file mode 100644
index 0000000..193aecc
--- /dev/null
+++ b/intVariable/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/intVariable/Program.cs b/intVariable/Program.cs
new file mode 100644
index 0000000..7ea8f88
--- /dev/null
+++ b/intVariable/Program.cs
@@ -0,0 +1,22 @@
+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();
+ }
+ }
+}
diff --git a/intVariable/Properties/AssemblyInfo.cs b/intVariable/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..c813740
--- /dev/null
+++ b/intVariable/Properties/AssemblyInfo.cs
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// 有关程序集的一般信息由以下
+// 控制。更改这些特性值可修改
+// 与程序集关联的信息。
+[assembly: AssemblyTitle("intVariable")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("intVariable")]
+[assembly: AssemblyCopyright("Copyright © 2024")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// 将 ComVisible 设置为 false 会使此程序集中的类型
+//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
+//请将此类型的 ComVisible 特性设置为 true。
+[assembly: ComVisible(false)]
+
+// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
+[assembly: Guid("e4f0a953-68eb-4231-ae4c-040e1a13747a")]
+
+// 程序集的版本信息由下列四个值组成:
+//
+// 主版本
+// 次版本
+// 生成号
+// 修订号
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/intVariable/intVariable.csproj b/intVariable/intVariable.csproj
new file mode 100644
index 0000000..2ca415c
--- /dev/null
+++ b/intVariable/intVariable.csproj
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {E4F0A953-68EB-4231-AE4C-040E1A13747A}
+ Exe
+ intVariable
+ intVariable
+ v4.8
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file