24h購物| | PChome| 登入
2009-10-22 18:40:26| 人氣1,393| 回應0 | 上一篇 | 下一篇

數字相加

推薦 0 收藏 0 轉貼0 訂閱站台

在此提供遞迴版以及非遞迴版

/***************************************************/

#include<stdlib.h>
#include<stdio.h>
int temp=0,x;
void Scan(int now)
{
  if(now<=0) return;
  else
     {
     scanf("%d",&x),temp+=x,printf("%d ",x);
     if(now!=1)   putchar('+'),putchar(' ');
     Scan(now-1);
     }
}
main()
{
 int a,b,n,x;
 while(scanf("%d",&n)&&n)
     temp=0,Scan(n),printf("= %d\n",temp);
 return 0;
}

/*******************************************************/

#include<stdlib.h>
#include<stdio.h>
main()
{
 int a,b,n,x;
 while(scanf("%d",&n)&&n)
    {
     int temp=0;
     for(a=0;a<n;a++)
     {
      scanf("%d",&x);
      temp+=x;
      printf("%d ",x);
      if(a!=n-1)   printf("+ ");
     }
     printf("= %d\n",temp);
    }
 return 0;
}

台長: 來源不明
人氣(1,393) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 數位資訊(科技、網路、通訊、家電) | 個人分類: ZeroJudge 基礎+原創題庫 |
此分類下一篇:三角形的判斷
此分類上一篇:Order's computation process

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文