首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴ksddah的代码贴全部
// varwid.c -- uses variable-width output field 
#include <stdio.h>
int main(void)
{
    unsigned width, precision;
    int number = 256;
    double weight = 242.5;

    printf("What field width?\n");
    scanf("%d", &width);
    printf("The number is :%*d:\n", width, number);
    printf("Now enter a width and a precision:\n");
......................
阅读全部 | 2013年1月22日 17:23
//用二分法查找数组中元素
#include<stdio.h>
#include<stdlib.h> 
#define N 15

int main()
{
    int arr[N]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
    int low=0;       //记录下标 
    int high=N-1;
    int middle;   
    int value;       //需要查找的数 
......................
阅读全部 | 2013年1月1日 13:55
1
ksddah