解题思路:
注意事项:
参考代码:
#include <cstdio> #include <cstdlib> #include <iostream> #include <cstring> #include <cctype> #include <string> #include <algorithm> #include <functional> using namespace std; char s[70]; int main() { int n; scanf("%d", &n); while(n--) { scanf("%s", s); if(s[strlen(s)-1]&1) { printf("odd\n"); } else { printf("even\n"); } } return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:725 |
蛇行矩阵 (C++代码)(预生成结果以节省每次生成的时间)浏览:890 |
【蟠桃记】 (C语言代码)浏览:2263 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)for循环浏览:1178 |
【数组的距离】 (C语言代码)浏览:787 |
人见人爱A+B (C语言代码)浏览:664 |
C语言程序设计教程(第三版)课后习题1.5 (C++代码)浏览:778 |
简单的a+b (C语言代码)浏览:752 |
用筛法求之N内的素数。 (C语言代码)浏览:711 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:812 |