标签:格式 width 包含 scan 考试题 这一 .com efi return
CCF计算机职业资格认证考试题解系列文章为meelo原创,请务必以链接形式注明本文地址
保存连续的三个值,可以不需要把数组全部保存起来。
C++
#include <cstdio> int main() { int N; scanf("%d", &N); if(N < 3) { printf("%d", 0); return 0; } int cnt = 0; int pre, cur, next; scanf("%d", &pre); scanf("%d", &cur); for(int n=2; n<N; n++) { scanf("%d", &next); if(cur > pre && cur > next) cnt++; else if(cur < pre && cur < next) cnt++; pre = cur; cur = next; } printf("%d", cnt); }
标签:格式 width 包含 scan 考试题 这一 .com efi return
原文地址:http://www.cnblogs.com/meelo/p/7643345.html