本文介绍了为什么我的代码有时会给出不同的结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在试图找出为什么我的代码给了我不同的结果是运行时 例如在第一次测试时工作 第二次测试完全不同的结果 第三次测试没有任何结果 以下是我的代码: char * Amy [] = {Olivia \\\ Emma \\\ Ava \\\ Mia \\\ Charloth \ nn Noah \ Liam \ Ben \ n Oliver \\ \\ n将}; printf(\ n Amy's Profile \ n); printf(学生姓名:\ n%s,* Amy,\ n); 我尝试了什么: 我没有尝试过多,因为我看不太清楚我的错误解决方案 以上line定义了一个只有一个项目的指针数组(字符)。 虽然技术上不是一个错误,但它可能不是你想要的。 以上行不正确(请参阅 printf文档 [ ^ ]):您的格式字符串只指定一个参数(%s ),但你提供两个( amy [0] 和\ n) 。一个不错的编译器会产生警告。 我会这样写的: #include < stdio.h > int main() { const char * Amy = Olivia \ n Emma \\\ Ava \\\ Mia \\\ Charloth \ Noah \ Liam \ Ben \\ n奥利弗\ n将; printf( \ n Amy的个人资料\ n); printf( 学生姓名:\ n%s \ n,Amy) ; return 0 ; } I'm trying to figure out why does my code gives me different results are runtimefor instance on first test it workssecond test a totally different resultthird test no result at allbelow is my code :char *Amy[] = {"Olivia \n Emma \n Ava\n Mia\n Charloth\n Noah \n Liam \n Ben \n Oliver \n will"}; printf("\n Amy's Profile\n"); printf("Student Names :\n %s",*Amy,"\n");What I have tried:I haven't try much at all since I don't quite see my mistake 解决方案 The above line defines an array of pointers (to characters) having just one item.While not technically a mistake, it is probably not what you intended.The above line is incorrect (see the printf documentation[^]): your format string specifies just one argument (%s), but you are providing two (amy[0] and "\n"). A decent compiler would produce a warning.I would have written it this way:#include <stdio.h>int main(){ const char *Amy = "Olivia \n Emma \n Ava\n Mia\n Charloth\n Noah \n Liam \n Ben \n Oliver \n will"; printf("\n Amy's Profile\n"); printf("Student Names :\n %s\n", Amy); return 0;} 这篇关于为什么我的代码有时会给出不同的结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-04 11:14