摘要: 加法 字符串输入 string add(string s1,string s2){ int l1,l2,l; l1=s1.length(); l2=s2.length(); if(l1<l2){ for(int i=1;i<=l2-l1;i++){ s1='0'+s1; } } else{ for( 阅读全文
posted @ 2022-08-12 11:07 zyzzzzlh 阅读(65) 评论(0) 推荐(0)