从键盘上输入abcde使得c1=‘a’,c2=‘d’并输出c1、c2
时间: 2023-05-22 17:01:57 浏览: 117
下面是实现这个功能的代码:
```lua
local input = io.read() -- 从键盘读入字符串
local c1, c2 = input:sub(1, 1), input:sub(4, 4) -- 取出第一个和第四个字符
print(c1, c2) -- 输出结果
```
如果你输入的是 "abcde",那么输出结果就是 "a d"。
相关问题
从键盘上输入abcde使得c1=‘a’,c2=‘d’并输出c1、c2所对应的大写字母,输出下列结果c1=A,c2=D
以下是实现该功能的代码:
```python
c1 = input()[0]
c2 = input()[2]
print("c1=" + c1.upper() + ",c2=" + c2.upper())
```
输入abcde后,分别输入c1和c2所对应的位置,即可输出结果:
```
a
d
c1=A,c2=D
```
从键盘上输入: abcde 使得c1=’a’,c2=’d’并输出c1、c2所对应的大写字母
```
#include <iostream>
using namespace std;
int main() {
char c1, c2;
cin >> c1 >> c2;
if (c1 == 'a') {
cout << "C1对应的大写字母是A" << endl;
} else if (c1 == 'b') {
cout << "C1对应的大写字母是B" << endl;
} else if (c1 == 'c') {
cout << "C1对应的大写字母是C" << endl;
} else if (c1 == 'd') {
cout << "C1对应的大写字母是D" << endl;
} else if (c1 == 'e') {
cout << "C1对应的大写字母是E" << endl;
}
if (c2 == 'a') {
cout << "C2对应的大写字母是A" << endl;
} else if (c2 == 'b') {
cout << "C2对应的大写字母是B" << endl;
} else if (c2 == 'c') {
cout << "C2对应的大写字母是C" << endl;
} else if (c2 == 'd') {
cout << "C2对应的大写字母是D" << endl;
} else if (c2 == 'e') {
cout << "C2对应的大写字母是E" << endl;
}
return 0;
}
```
输入:`abcde`
输出:
```
C1对应的大写字母是A
C2对应的大写字母是D
```
阅读全文