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

19
1.1307.cpp Normal file
View File

@ -0,0 +1,19 @@
#include<cstdio>
int n;
int main()
{
int n,res=0;
scanf("%d",&n);
if(n<0)
{
printf("-");
n=-n;
}
while(n>0)
{
res=res*10+n%10;
n/=10;
}
printf("%d\n",res);
return 0;
}