首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴寂静流年的代码贴C语言
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
    long long n,m,x,y;
    int i;
    scanf("%I64d%I64d",&n,&m);
    if(m<0) i=-m;
    else i=m;
    while(n!=0||m!=0)
    {
......................
阅读全部 | 2013年4月12日 23:57
1
寂静流年