#include<stdio.h> #include<string.h> int main() { char a=1,b=2; if(strcmp(a,b)==0) printf("%c",a); else printf("%c",b); return 0; } 我想比较两个字符串是否相等,这段代码能实现吗,哪里错了
时间: 2023-12-03 09:45:44 浏览: 81
这段代码是有问题的。strcmp()函数是用于比较两个字符串是否相等的,而你传入的是两个字符变量a和b,不是字符串。如果你想比较两个字符变量是否相等,可以直接使用==运算符。修改后的代码如下:
```c
#include <stdio.h>
int main() {
char a = 'a', b = 'b'; // 用字符变量代替整型变量
if (a == b)
printf("%c", a);
else
printf("%c", b);
return 0;
}
```
如果你想比较两个字符串是否相等,可以使用strcmp()函数。比如:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
if (strcmp(str1, str2) == 0)
printf("str1 and str2 are equal\n");
else
printf("str1 and str2 are not equal\n");
return 0;
}
```
输出结果为:
```
str1 and str2 are not equal
```
相关问题
#include<stdio.h> #include<string.h> int main() { char a=1,b=2; if(strcmp(a,b)==0) printf("%c",a); else printf("%c",b); return 0; } 这段代码哪里错了
这段代码错在使用了 `strcmp()` 函数比较两个 `char` 类型的变量。`strcmp()` 函数是用来比较两个字符串的,它的参数应该是 `char*` 类型的字符串指针。
如果要比较两个字符的大小关系,可以直接使用 `>`、`<`、`==` 等逻辑运算符进行比较。可以用下面的代码来实现:
```c
#include <stdio.h>
int main() {
char a = 'A';
char b = 'B';
if (a < b) {
printf("%c is smaller than %c\n", a, b);
} else {
printf("%c is greater than or equal to %c\n", a, b);
}
return 0;
}
```
输出结果为:`A is smaller than B`。
#include <stdio.h> #include <linux/types.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> #include <sys/types.h> #include <sys/ioctl.h> #include <string.h> #include <linux/i2c.h> #include <linux/i2c-dev.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #define DEFAULT_I2C_BUS "/dev/i2c-0" /* PCF8591 应用层测试代码 */ int main(int argc,char **argv) { unsigned char data=0; int fp; float tmp; // tmp=5.34v 0.34 int a; int b; fp=open("/dev/Tiny4412_PCF8591",O_RDWR); if(fp<0) /*判断文件是否打开成功*/ { printf("PCF8591 driver open error!\n"); return -1; } while(1) { read(fp,&data,1); write(fp,&data,1); printf("ADC1=%d\n",data); tmp=(float)data*(5.0/255); //电压= 采集的数字量*(参考电压/分辨率); a=tmp; //a=5 tmp=5.3 b=(int)((tmp-a)*1000); //b=0.34 printf("ADC1=%d.%dV\r\n",(int)a,(int)b); sleep(1); } close(fp); return 0; }优化这段代码使其从PCF8591默认地址0x48里读取数据并输出数据
您好!根据您的要求,我帮您优化了代码,使其从PCF8591默认地址0x48中读取数据并输出。
```c
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <linux/i2c.h>
#include <linux/i2c-dev.h>
#define DEFAULT_I2C_BUS "/dev/i2c-0"
#define PCF8591_ADDRESS 0x48
int main(int argc, char **argv)
{
int fp;
unsigned char data = 0;
fp = open(DEFAULT_I2C_BUS, O_RDWR);
if (fp < 0) {
printf("Failed to open I2C bus.\n");
return -1;
}
if (ioctl(fp, I2C_SLAVE, PCF8591_ADDRESS) < 0) {
printf("Failed to set I2C slave address.\n");
close(fp);
return -1;
}
while (1) {
if (read(fp, &data, 1) != 1) {
printf("Failed to read data from PCF8591.\n");
close(fp);
return -1;
}
printf("ADC1=%d\n", data);
float voltage = (float)data * (5.0 / 255);
int integerPart = (int)voltage;
int decimalPart = (int)((voltage - integerPart) * 1000);
printf("ADC1=%d.%dV\n", integerPart, decimalPart);
sleep(1);
}
close(fp);
return 0;
}
```
这样,代码就能从PCF8591默认地址0x48中读取数据,并输出读取到的数据。希望对您有帮助!如果还有其他问题,请随时提问。
阅读全文