标签:
一、项目1:数组分离
#include <iostream> using namespace std; int main() { int a[10],b[10],c[10],i,j=0,k=0,m=0,n=0; cout<<"请输入十个数:"<<endl; for(i=0; i<10; i++) { cout<<"a["<<i<<"]="; cin>>a[i]; } for(i=0; i<10; i++) { if(a[i]%2!=0) b[n++]=a[i],j++; else c[m++]=a[i],k++; } if(j>0) { cout<<"该数组中的奇数有:"; for(n=0; n<j; n++) cout<<"b["<<n<<"]="<<b[n]<<" "; cout<<endl; } else cout<<"该数组中没有奇数"<<endl; if(k>0) { cout<<"该数组中的偶数有:"; for(m=0; m<k; m++) cout<<"c["<<m<<"]="<<c[m]<<" "; cout<<endl; } else cout<<"该数组中没有奇数"<<endl; return 0; }
二、项目2:数组选择
#include <iostream> using namespace std; int main() { int a[10],b[10],i=0,j=0,k=0,n=0; cout<<"从键盘中输入10个数:"<<endl; for(i=0; i<=9; i++) { cout<<"a["<<i<<"]="; cin>>a[i]; } for(i=0; i<=9; i++) { for(j=0; j<=9; j++) { if(i==j) continue; if(a[i]==a[j]) break; if(j==9) b[k++]=a[i],n++; } } if(k>0) { cout<<"B数组中的值为:"<<endl; for(k=0; k<n; k++) cout<<"b["<<k<<"]="<<b[k]<<" "; cout<<endl; } else cout<<endl; return 0; }
三、项目4:字符串
#include<iostream> #include<cstdio> using namespace std; int main() { char str[50]; int i=0,n=0,j=0,k=0; cout<<"输入字符串:"; gets(str); while(str[i]!='\0') { if(str[i]>='0'&&str[i]<='9') n++; else if(str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z') j++; else k++; i++; } cout<<"其中的(大/小写)字母个数是: "<<j<<"\n其中的数字个数是: "<<n<<"\n其中的其它字符个数是: "<<k<<endl; return 0; }
标签:
原文地址:http://blog.csdn.net/zhongpeng000/article/details/51323707