首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
ACM2055_ctype.h_cctype
】的更多相关文章
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…