delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#include<cstdio>
#include<cstring>
int main()
{
int len=0;
char w,s[600],a[600];
gets(a);
int lenn=strlen(a);
for(int i=0;i<lenn;i++)
{
w=a[i];
if(w!=' ') s[len++]=w;
else
{
for(int i=len-1;i>=0;i--) printf("%c",s[i]);
printf(" ");
len=0;
}
}
for(int i=len-1;i>=0;i--)
printf("%c",s[i]);
printf("\n");
return 0;
}