赞
踩
蓝桥杯STEMA测评--Python真题讲解1_哔哩哔哩_bilibili
蓝桥杯STEMA测评--Python真题讲解2_哔哩哔哩_bilibili
蓝桥杯STEMA测评--Python真题讲解3_哔哩哔哩_bilibili
蓝桥杯STEMA测评--Python真题讲解4_哔哩哔哩_bilibili
蓝桥杯STEMA测评--Python真题讲解5_哔哩哔哩_bilibili
蓝桥杯STEMA测评-python真题讲解6_哔哩哔哩_bilibili
- /*
- 第十二届蓝桥杯青少年python组 第1题 C++实现
- */
- #include <bits/stdc++.h>
- using namespace std;
- int main( void )
- {
- for(int i=2000;i<=3200;i++)
- {
- if( i%7==0 && i%5!=0 )
- {
- cout<<i<<endl;
- }
- }
-
- return 0;
- }
-
- /*
- 第十二届蓝桥杯青少年python组 第2题 C++实现
- */
- #include <bits/stdc++.h>
- using namespace std;
- int main( void )
- {
- string str;
- getline(cin,str);
-
- int lena=str.size();
- int digit=0,letters=0,spaces=0,others=0;
- for(int i=0;i<lena;i++)
- {
- if( str[i]>='0' && str[i]<='9' )
- {
- digit+=1;
- }
- else
- {
- if( str[i]>='a' && str[i]<='z' || str[i]>='A' && str[i]<='Z')
- {
- letters+=1;
- }
- else
- {
- if( str[i]==' ')
- {
- spaces+=1;
- }
- else
- {
- others+=1;
- }
- }
- }
- }
-
- cout<<digit<<" "<<letters<<" "<<spaces<<" "<<others<<endl;
-
- return 0;
- }
-
- /*
- 第十二届蓝桥杯青少年python组 第3题 C++实现
- */
- #include <bits/stdc++.h>
- using namespace std;
- int main( void )
- {
- string str;
-
- getline(cin,str);
-
- int lena=str.size();
- int num01=0,num02=0;
-
- for(int i=0;i<lena;i++)
- {
-
- if(str[i]>='A' && str[i]<='Z')
- {
- num01+=1;
- }
-
- if( str[i]>='a' && str[i]<='z')
- {
- num02+=1;
- }
- }
-
- cout<<"大写字母的数量:"<<num01<<endl;
- cout<<"小写字母的数量:"<<num02<<endl;
-
- return 0;
- }
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。