题解 2903: 不高兴的津津

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2903: 不高兴的津津

摘要:```cpp #include #include using namespace std; int main() { int day,arr1[8],arr2[8]; m……

2903: 不高兴的津津

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int day;    int arr1[8]={0};    int arr2[8]={0};//两个数组来装数……

2903: 不高兴的津津

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int a[8] = {0}, n = 0, max = 0, ans = 0;     ……

编写题解 2903: 不高兴的津津 C

摘要:解题思路:输入-判断-输出注意事项:就是两个相同的时候如何比较,注意不要加>=号参考代码:#include<stdio.h>int main(){    int a[8],b[8];    int i……