超長二進制相加,C語言實現

#include<stdio.h> #define N 51 int add1(char first, char second){     int i=3;     if(first=='0' || first=='1' && second=='0' || second=='1'){         i = first + second - 2*'0';     }     return i; }
相關文章
相關標籤/搜索