#include "stdafx.h"
#include "windows.h"
#include "iostream"
#include "stdlib.h"
#include "climits"
using namespace std;
int main(int argc, char* argv[])
{
char ch='A';
while(ch<='z')
{
if(ch==88)
break;
ch++;
}
cout<<ch<<endl;
system("pause");
return 0;
}
找到编码为88的字符
最新推荐文章于 2024-07-27 14:40:46 发布