ACM2055_ctype.h_cctype】的更多相关文章

#include<iostream> int main() { using namespace std; int y,count; char x; cin>>count; while(count--){ cin>>x>>y; islower(x)?cout<<(-x+y)<<endl:cout<<x-+y<<endl; } ; } 在这个例子中使用了头文件"ctype.h"中的islower…