|
|
|
|
背景 Background |
|
|
为了for beginngers,特设此题,^_^
|
|
|
|
|
|
|
|
描述 Description |
|
|
输入一个字符,进行数字、大、小写字母和特殊字符分类判别,如果是数字,输出numeric,如果是小写字母输出:lowercase,如果是大写字母输出:uppercase,其他字符则输出:particular
样例:
输入:
B
输出:
uppercase
|
|
|
|
|
|
|
|
时间限制 Time Limitation |
|
|
各个测试点1s
|
|
|
|
|
|
|
|
注释 Hint |
|
|
Free Pascal Code:
-------------------
program Plus;
var a,b:longint;
begin
readln(a,b);
writeln(a+b);
end.
C++ Code:
-------------------
#include <iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}
|
|
|
|
|
|
|
|
|
Flag |
|
题号 |
P1603 |
|
字符串处理 |
通过 |
27人 |
提交 |
72次 |
通过率 |
37% |
难度 |
0 |
|
|
|
|
|
|