release
想问一下,用vs2013调试成功的程序,转换成了release后,为什么电脑还会提示这个,下面有源代码,望大神请教!MSVCR120.dll缺失。
#include<windows.h>
#include<stdio.h>
#include<string.h>
int judge(char p1[])
{
char ch[100], p2[100];
gets_s(ch, 100);
if (strcmp(ch, p1) == 0)
{
system("shutdown /a");
}
else
{
system("shutdown /a"); //
system("shutdown /s /t 60");
gets_s(p2, 100);
if (strcmp(p2, p1) == 0)
{
system("shutdown /a");
}
else
{
system("shutdown /a");
system("shutdown /s /t 5");
}
}
return 0;
}
int main()
{
char p1[100] = "chenhaiyuaniscool!";
system("shutdown /s /t 300");
judge(p1);
system("pause");
return 0;
}