这是我的问题,如何解析Visual C ++中textBox输入的字符串。我有这样的项目,我的投入需要一年。无论是否为闰年,该计划都会在标签上给出结果。我擅长C ++ / CLI,但Visual有点不同。请真的需要帮助。
以下是部分代码:
String ^ year;
year = textBox1->Text;
// The code for parsing will be put here
bool isLeapYear = ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0));
if (isLeapYear)
{
label1->Text="Is a leap year";
} else
label1->Text="Is not a leap year";
}