char p, s [6]; int n; p=s; 1/p值向数组s的首地址 gets(p);1/ 输入一个字符串 n=p-’0";1/转换成响应的8进制数 while(++p){ //輸入 n=(n8)+*p-'0’;1/ 1.n=( } printf("*d\n" , n); 这里为什么是n*8+*p
时间: 2024-02-01 17:17:06 浏览: 77
这段代码的功能是将输入的字符串转换成对应的8进制数并输出。下面逐行解释代码的含义:
```c
char p, s[6]; // 声明字符变量p和字符数组s,s用于存储输入的字符串
int n;
p = s; // 将字符数组s的首地址赋值给字符变量p
gets(p); // 输入字符串,存储到s数组中
n = p - '0'; // 将字符变量p转换为整型数字n,减去字符'0'的ASCII码值即可
while (++p) { // 循环遍历字符串中的每一个字符
n = (n * 8) + (*p - '0'); // 将n乘以8并加上当前字符对应的数字
}
printf("%d\n", n); // 输出转换后的8进制数
```
在这个while循环中,每次循环都会将n乘以8,这是因为在8进制中,每一位的权值都是8的幂次方。而每次循环还会加上当前字符对应的数字,这是因为8进制只有0~7这几个数字,所以需要将输入的字符串中每个字符对应的数字都加起来才能得到最终的8进制数。
相关问题
/*调用merge函数,实现将指针s所指的字符串的反序和正序连接*/ #include<stdio.h> #include<string.h> int main() { char str[100]; ;//声明要调用的函数 printf("Please enter a string:"); gets(str); return 0; } void merge(char *s) { char *p,*q,n; n= ;//n为指针s指向的串的长度 for(p=s+n-1,q=s+n;p>=s;p--;q++) *q=*p;//反序存放 *q='\0'; }哪里需要完善呢?
这段代码中有几个需要完善的地方:
1. 在调用merge函数之前,需要先声明该函数,否则编译器会报错。
2. 在函数merge中,变量n的值需要根据指针s指向的字符串来确定,可以使用strlen函数来获取字符串的长度。
3. 在反序存放完字符串后,需要将字符串末尾添加一个空字符'\0',以表示字符串的结束。
完善后的代码如下:
```c
#include<stdio.h>
#include<string.h>
void merge(char *s);
int main() {
char str[100];
printf("Please enter a string:");
gets(str);
merge(str);
printf("Result:%s\n", str);
return 0;
}
void merge(char *s) {
char *p,*q;
int n = strlen(s);
for(p=s+n-1,q=s+n;p>=s;p--,q++)
*q=*p;//反序存放
*q='\0'; //添加字符串结束标记
}
```
#include <stdio.h> #include <string.h> #include <stdlib.h> #define max 1000 int num=0; struct book //书 { char name[20]; //名 double price; //价格 int lent=0; //是否已借 int id=NULL; //图书编号 struct book *next; }; struct user //用户结构 { char name[30]; //名字 int account ; //账号 int password; //密码 int borrow; //借书的id }; int lookupb(book *l,char name[20]) //书名查找,(有)返回id值(无)返回 NULL { int i=0; book *p=l->next ; for(i=0;i<num;i++) { if(strcmp(p->name ,name )==0) { return l->id ; break; } p=p->next ; } return NULL; } void out(book *l) //输出图书 { int i; book *p=l->next ; printf("name price"); for(i=1;i<=num;i++) { puts(p->name ); printf("%lf\n",p->price ); if(i%12==0) { printf("%d/%d",i,num/12); //i/总页数 } p=p->next ; } } void add() //管理员 注册新图书 { book *l,*s,*r; int i,n,k; if(num==0) { l=(book *)malloc(sizeof(book)); l->next =NULL; } r=l; printf("需要添加几本\n"); scanf("%d",&n); getchar(); //消化回车键 for(i=0;i<n;i++) { s=(book *)malloc(sizeof(book)); printf("请输入书名\n"); gets(s->name ); k=lookupb(l,s->name); if(k!=NULL) { printf("重复命名,请重新输入\n"); add(); } printf("%c",s->name ); printf("请输入价格\n"); scanf("%lf",&s->price ); getchar(); //消化回车键 strcpy(l->name,s->name); s->id =1; r->next =s; r=s; num++; printf("添加成功!"); system("pause"); } r->next=NULL; out(l); } int main() { add(); printf("%d\n",sizeof(book)); }
这段代码缺少了一些定义,例如 `book` 结构体的定义、`lookupb` 函数和 `out` 函数的参数类型,以及 `book` 结构体中的一些成员变量没有正确初始化(例如 `lent` 和 `id`)。此外,代码中存在一些语法错误和逻辑错误。
下面是经过修改后的代码:
```c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define max 1000
struct book {
char name[20]; // 名称
double price; // 价格
int lent; // 是否已借出
int id; // 图书编号
struct book *next;
};
struct user {
char name[30]; // 名字
int account; // 账号
int password; // 密码
int borrow; // 借书的id
};
int lookupb(struct book *l, char name[20]) {
int i = 0;
struct book *p = l->next;
for (i = 0; i < max; i++) {
if (strcmp(p->name, name) == 0) {
return p->id;
}
p = p->next;
}
return -1;
}
void out(struct book *l) {
int i;
struct book *p = l->next;
printf("name\tprice\n");
for (i = 1; i <= max; i++) {
printf("%s\t%.2f\n", p->name, p->price);
if (i % 12 == 0) {
printf("%d/%d\n", i, max / 12); // i/总页数
}
p = p->next;
}
}
void add() {
struct book *l, *s, *r;
int i, n, k;
if (max == 0) {
l = (struct book *)malloc(sizeof(struct book));
l->next = NULL;
}
r = l;
printf("需要添加几本:\n");
scanf("%d", &n);
getchar(); // 消化回车键
for (i = 0; i < n; i++) {
s = (struct book *)malloc(sizeof(struct book));
printf("请输入书名:\n");
gets(s->name);
k = lookupb(l, s->name);
if (k != -1) {
printf("重复命名,请重新输入\n");
add();
}
printf("请输入价格:\n");
scanf("%lf", &s->price);
getchar(); // 消化回车键
s->lent = 0;
s->id = i + 1;
r->next = s;
r = s;
printf("添加成功!\n");
}
r->next = NULL;
out(l);
}
int main() {
add();
return 0;
}
```
这段代码实现的功能是,管理员可以注册新书,输入书名和价格,系统自动分配编号,并将书名、价格、编号等信息存储在一个链表中。最后,输出所有已注册的图书信息。注意,这段代码并没有实现完整的图书馆管理系统,只是实现了其中的一个功能。如果需要实现完整的图书馆管理系统,还需要考虑很多其他方面的功能和细节。
阅读全文