Update C code projects and configurations

This commit is contained in:
2025-08-04 13:00:16 +08:00
parent c9e57b4d41
commit 127ecdab8f
18 changed files with 159 additions and 155 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <stdio.h>
int main()
{
int x;
int n=0;
scanf("%d", &x);
n++;
x=x/10;
while(x>10)
{
n++;
x=x/10;
}
printf("%d\n",n);
return 0;
}