#12031: C(解)


asd11020313 (unknown)

學校 : 國立聯合大學
編號 : 66183
來源 : [42.73.22.212]
最後登入時間 :
2017-05-16 12:29:43
a002. 簡易加法 | From: [61.223.210.147] | 發表日期 : 2017-05-15 13:56

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main()
{
int a1,a2;


while(scanf("%d %d", &a1, &a2)!=EOF)
{

a1 = sqrt(pow(a1,2));
a2 = sqrt(pow(a2,2));
if(a1< pow(10,6) && a2<pow(10,6))
{
printf("%d\n",a1+a2);
}
else
{
printf("Error");
}

}
return 0;
}

 
ZeroJudge Forum