首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴liuyanger的代码贴全部
#include<stdio.h>
#include<ctype.h>
int main()
{
char ch;
int a=0,b=0,c=0,d=0,e=0;
printf("Input a string:");
while((ch=getchar())!='\n')
{
if(  islower(ch) )
a++;
else if(isupper(ch))
......................
阅读全部 | 2016年12月22日 17:24
#include <stdio.h>//二分法查找

int Binary_search(int * a,int key);

int main(void)

{

   int ary[]={1,2,3,4,5,6,7,8,9};

   int t=Binary_search(ary,3);

......................
阅读全部 | 2016年12月22日 17:14
1
liuyanger