每天打卡一小时 第十二天 编译四部曲
第一部曲 自然语言
寻找相同的元素 找出没有相同元素的元素
第二部曲 流程图
第三部曲 代码
#include<stdio.h> int main() { int n; scanf("%d",&n); int a[n]; int i; for(i=0;i<n-1;i++) { scanf("%d",&a[i]); } int temp=a[0]; for(i=1;i<n-1;i++) { temp=temp^a[i]; } printf("%d\n",temp); return 0; }
第四步曲 总结
尝试使用更多的运算符,没有用 异或符号 最后一个测试点一直超时
代码真的很简单 当然 你必须想到用这个运算符,不然一直超时,气死你