#include
using
namespace
std;
int
main()
{
char
ch;
while(cout<<"Enter
one
Character(ctrl+z
to
end):"<
{
if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
cout<<"ASCII:"<
return
0;
}
//标准的C++程序
//static_cast
//以下针对修改程序
#include
using
namespace
std;
int
main()
{
char
ch;
cout<<"Enter
one
Character:"<
if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
cout<<"ASCII:"<
0;
}