std::string text;
HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE); // Gets the console handle.
PCONSOLE_SCREEN_BUFFER_INFO lpScreenInfo = new CONSOLE_SCREEN_BUFFER_INFO(); // Creates a pointer to the Screen Info pointing to a temporal screen info.
GetConsoleScreenBufferInfo(hConsole, lpScreenInfo); // Saves the console screen info into the lpScreenInfo pointer.
COORD NewSBSize = lpScreenInfo->dwSize; // Gets the size of the screen
int choice{};
do
{
if (NewSBSize.X > text.size())
{
int newpos = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "ARES\n"; // Prints the spaces
int newpos1 = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "MENU\n"; // Prints the spaces
int newpos2 = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "Select one of the following options by pressing 1, 2 or 3:\n"; // Prints the spaces
int newpos3 = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "1. Activate Virus\n"; // Prints the spaces
int newpos4 = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "2. Program Information\n"; // Prints the spaces
int newpos5 = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "3. Exit\n"; // Prints the spaces
std::cin >> choice;
switch (choice)
{
case 1:
int newpos = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newpos; i++) std::cout << "Infection Initiated. Press any key to continue . . .\n"; // Prints the spaces
std::cin.ignore();
system("CLS");
Ares();
case 2:
int newposi = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newposi; i++) std::cout << "Program Information loading. Press any key to continue . . .\n"; // Prints the spaces
std::cin.ignore();
system("CLS");
ProgramInfo();
case 3:
int newposh = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newposh; i++) std::cout << "Ending Operations. Press any key to continue . . .\n"; // Prints the spaces
std::cin.ignore();
system("CLS");
menu();
default:
int newposa = ((NewSBSize.X - text.size()) / 2); // Calculate the number of spaces to center the specific text.
for (int i = 0; i < newposa; i++) std::cout << "Invalid input! Press any key to continue . . .\n"; // Prints the spaces
}
}
}
while (choice < 1 or choice > 3);
这是我得到错误的相关代码。如果你需要看更多我的代码,让我知道,我会添加它。
我在互联网上寻找一个解决方案,也发现了类似的问题,但没有一个修复工作做任何事情来解决问题。如有任何帮助,我将不胜感激
签名/未签名不匹配。我怎么解决这个?
从窄到宽。如果无符号类型较宽,则首先考虑负值。
如果相对宽度不确定,请先处理负值。
newsbsize.x
显然是一个short
,一种带符号的类型。
text.size()
是size_t
,一种无符号类型。
如果newsbsize.x
意外地为负数,则newsbsize.x>text.size()
在逻辑上为false,因此在这种情况下会失败。
if (NewSBSize.X >= 0 && ....
然后将short
转换为其未签名的对应方-或其未签名的提升对应方。这里的强制转换不对newsbsize.x
进行值更改,并且根据两个无符号类型中较宽的一个进行以下无符号比较。
... (unsigned) NewSBSize.X > text.size()
总共
if (NewSBSize.X >= 0 && (unsigned) NewSBSize.X > text.size()) {
如果代码可以确保newsbsize.x>=0
,那么就简化到下面。
警告:微优化是邪恶的。
if ((unsigned) NewSBSize.X > text.size()) {
上面显示的匹配括号问题是许多编程语言都会出现的一般情况的特定情况。匹配和嵌套不同种类的开始和结束符号的情况经常发生。例如,在 Python 中,方括号 [ 和 ] 用于列表,花括号 { 和 } 用于字典。括号 ( 和 ) 用于元组和算术表达式。只要每个符号都能保持自己的开始和结束关系,就可以混合符号。符号字符串如 { { ( [ ] [ ] ) } ( ) } [ [ { { ( ( ) )
我在这行有一个错误:最终用户=新用户(地址、确认密码、用户电子邮件、密码、电话号码、用户名、链接); 错误为“无法解决符号链接” 我已经删除了一些代码,如果你需要更多细节,请在下面留下评论。有人能帮忙吗?非常感谢你的帮助
我尝试了这种模式,但发现第一个匹配的句子带有符号
失败:生成失败,出现异常。 > 其中:Script“C:\flutter\packages\flutter_tools\gradle\flutter.gradle”行:900 错误:任务“:app:CompileFlutterBuildDebug”执行失败。 进程“command”C:\flutter\bin\flutter.bat“已完成,退出值为非零%1 生成在%12s中失败异常:Gradle
代码运行,但无法获得函数、类等的建议。 谢谢