摘要:
#include<stdio.h> int main() { char *p,a[6]="556"; p=a; int n= *p-'0'; while(*(++p)!='\0') { n=n*8+*p-'0'; } printf("%d",n); return 0; } 阅读全文
posted @ 2022-02-23 00:09 Astro_Leon 阅读(175) 评论(0) 推荐(0)
posted @ 2022-02-23 00:09 Astro_Leon 阅读(175) 评论(0) 推荐(0)