谁能帮我纠正一下下面的代码?谢谢!

匿名网友 |浏览383次
收藏|2020/04/11 13:08

满意回答

2020/04/11 13:28

//改好的及说明参考#include<stdio.h>#include <string.h>int main(){ char daan[5]; ////C的char只能存下一个字符 //它也不可能变成整形的1/0 // char no = 1; // char yes = 0; printf("你爱我吗?回答yes或no哦!\n"); scanf("%s", daan); //字串不用地址& if (strcmp(daan,"yes")==0) // && daan != no) { //等于yes要用函数,所以头上也要加 ///#include <string.h> ///且等于了yes就不可能为no了 ///所以no也没必要判断了 printf("I love you,too!\n"); } else { printf("握草!无情啊......"); } return 0;}///测试结果

whoami1978

其他回答(0)
0人关注该问题
+1

 加载中...