首页 > 试题广场 >

反序输出

[编程题]反序输出
  • 热度指数:31911 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
输入任意4个字符(如:abcd), 并按反序输出(如:dcba)

输入描述:
题目可能包含多组用例,每组用例占一行,包含4个任意的字符。


输出描述:
对于每组输入,请输出一行反序后的字符串。
具体可见样例。
示例1

输入

Upin
cvYj
WJpw
cXOA

输出

nipU
jYvc
wpJW
AOXc
头像 季冠臣
发表于 2020-09-11 22:52:28
include<stdio.h> int main(){ char k[4]; for(int i=0;i<4;i++){ scanf("%c",&k[i]); } for(int i=3;i>-1;i--){ pr 展开全文
头像 🐮🐮牛_
发表于 2022-01-13 14:58:46
本题需用low,high指针前后夹击字符串数组,在每一次循环的过程中将两字符进行交换即可 #include<stdio.h> #include<cstring> void reverse(char *s){ int low = 0,high = strlen(s)- 展开全文
头像 李顺利plus
发表于 2022-03-06 16:21:21
#include<stdio.h> int main() {     char a[5];     while(scanf("%s",&a)!=EOF)     {    展开全文
头像 盛夏光年2024
发表于 2021-07-28 15:53:36
#include <bits/stdc++.h> using namespace std; int main() { string str; while (cin >> str) { for (int i = str.size()-1; i 展开全文
头像 牛客149943819号
发表于 2022-03-16 14:16:05
#include "stdio.h" #include "string.h" int main(){ char str[4]; char temp; while(scanf("%s",&str)!=EOF){ for(int i=0;i<2;i++){ temp=str[i]; str 展开全文
头像 给我就亿下
发表于 2023-03-16 11:29:15
#include <iostream> #include <string> using namespace std; int main () { string str; while (cin >> str){ for (int i = 3; i > 展开全文
头像 Javker丶鑫
发表于 2021-02-02 17:38:46
package demo.day0202; import java.util.List; import java.util.Scanner; public class clien { public static void main(String[] args) { Sc 展开全文
头像 MrMello
发表于 2023-03-23 16:18:35
#include <stdio.h> #include <string.h> int main(){ char str[20]; while (scanf("%s", str) != EOF){ int len = strlen(str); 展开全文
头像 Modesty……
发表于 2023-03-26 16:48:54
#include <iostream> using namespace std; int main() { string str; while (cin >> str) { // 注意 while 处理多个 case for(int i=3; 展开全文
头像 wuhangji
发表于 2023-11-21 17:54:48
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S 展开全文