当前位置:   article > 正文

第十二届蓝桥杯青少年python组 第1-3题 C++实现_十二届蓝桥杯python组1月中/高级试题

十二届蓝桥杯python组1月中/高级试题

蓝桥杯STEMA测评--Python真题讲解1

蓝桥杯STEMA测评--Python真题讲解1_哔哩哔哩_bilibili

蓝桥杯STEMA测评--Python真题讲解2

蓝桥杯STEMA测评--Python真题讲解2_哔哩哔哩_bilibili

蓝桥杯STEMA测评--Python真题讲解3

蓝桥杯STEMA测评--Python真题讲解3_哔哩哔哩_bilibili

蓝桥杯STEMA测评--Python真题讲解4

蓝桥杯STEMA测评--Python真题讲解4_哔哩哔哩_bilibili

蓝桥杯STEMA测评--Python真题讲解5

蓝桥杯STEMA测评--Python真题讲解5_哔哩哔哩_bilibili

蓝桥杯STEMA测评-python真题讲解6

蓝桥杯STEMA测评-python真题讲解6_哔哩哔哩_bilibili



第十二届蓝桥杯青少年python组 第1题 C++实现

  1. /*
  2. 第十二届蓝桥杯青少年python组 第1题 C++实现
  3. */
  4. #include <bits/stdc++.h>
  5. using namespace std;
  6. int main( void )
  7. {
  8. for(int i=2000;i<=3200;i++)
  9. {
  10. if( i%7==0 && i%5!=0 )
  11. {
  12. cout<<i<<endl;
  13. }
  14. }
  15. return 0;
  16. }


第十二届蓝桥杯青少年python组 第2题 C++实现

  1. /*
  2. 第十二届蓝桥杯青少年python组 第2题 C++实现
  3. */
  4. #include <bits/stdc++.h>
  5. using namespace std;
  6. int main( void )
  7. {
  8. string str;
  9. getline(cin,str);
  10. int lena=str.size();
  11. int digit=0,letters=0,spaces=0,others=0;
  12. for(int i=0;i<lena;i++)
  13. {
  14. if( str[i]>='0' && str[i]<='9' )
  15. {
  16. digit+=1;
  17. }
  18. else
  19. {
  20. if( str[i]>='a' && str[i]<='z' || str[i]>='A' && str[i]<='Z')
  21. {
  22. letters+=1;
  23. }
  24. else
  25. {
  26. if( str[i]==' ')
  27. {
  28. spaces+=1;
  29. }
  30. else
  31. {
  32. others+=1;
  33. }
  34. }
  35. }
  36. }
  37. cout<<digit<<" "<<letters<<" "<<spaces<<" "<<others<<endl;
  38. return 0;
  39. }


第十二届蓝桥杯青少年python组 第3题 C++实现

  1. /*
  2. 第十二届蓝桥杯青少年python组 第3题 C++实现
  3. */
  4. #include <bits/stdc++.h>
  5. using namespace std;
  6. int main( void )
  7. {
  8. string str;
  9. getline(cin,str);
  10. int lena=str.size();
  11. int num01=0,num02=0;
  12. for(int i=0;i<lena;i++)
  13. {
  14. if(str[i]>='A' && str[i]<='Z')
  15. {
  16. num01+=1;
  17. }
  18. if( str[i]>='a' && str[i]<='z')
  19. {
  20. num02+=1;
  21. }
  22. }
  23. cout<<"大写字母的数量:"<<num01<<endl;
  24. cout<<"小写字母的数量:"<<num02<<endl;
  25. return 0;
  26. }

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号