Skip to content

Commit

Permalink
解决了 空指针异常 Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pVD7aD1J committed Nov 30, 2024
1 parent 8fdc72c commit a74d14d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions C
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;

namespace MyApplication
{
class Program
{
static void Main(string[] args)
{
int x = 5;
int y = 3;
Console.WriteLine(x - y);
}
} // Creater By Sanusanth
}

0 comments on commit a74d14d

Please sign in to comment.