首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴如此自肆的代码贴C++
#include "stdio.h"
#include "math.h"
void main()
{
    int a[10],n,i=0,j=0,k=0;
    printf("请输入一个数:");
    scanf("%d",&n);
    while(n!=0)
    {  
        a[i++]=n%10;
        n/=10;
    } 
......................
阅读全部 | 2012年11月25日 12:15
1
如此自肆