番茄零亂初學c 之字串加減乘

2022-01-23 13:58:33 字數 646 閱讀 8037

記錄下自己學程式設計的點點滴滴。
暫時不支援除法,還沒找到好的解決辦法。
static string supercalc(string a, string b, char op)

if (op == '*')

if (carry != 0) temp.insert(0, carry);

temps = supercalc(temps, temp.tostring() + new string('0', a.length - 1 - i), '+');

}return temps;

}for (int i = a.length - 1; i >= 0; i--)

//拼接

temp.insert(0,(am % 10).tostring() );

}if (carry != 0) temp.insert(0, carry);

return temp.tostring();

}static string superadd(string a, string b)

if (c != 0) result.insert(0, "1");//判斷最後一次是否有進製,如有就加到最前面

return result.tostring();

}

嗯 零亂知識點map和字串轉換的

幾個函式 atof 將字串轉換成浮點數值 atoi 將字串轉換成整數值 atol 將字串轉換成長整數值 strtod 將字串轉換成雙精度型數值 strtol 將字串轉換成長型數值 標頭檔案是stdlib.h 今天還看到了 include原本來自 map是c 的乙個標準容器,她提供了很好一對一的關係,...

PHP初學之字串

字串 一 含義 字串,就是一串字元,二 宣告 str 字串 或者 str 字串 即用單引號或者雙引號包裹起來,三 轉義符 在某些時候,我們需要輸出一些符號,但是在 裡,有些符號有特定的作用,會發生衝突,轉義符的作用就是消除這些有特殊意義的符號的作用 1 形式 取消斜槓後字元的特殊含義,使其變為乙個普...

C語言字串加減計算器

pragma warning disable 4996 include void calculator bool isadd,char a,char b 陣列計算函式 int getlength char a 獲得陣列長度 void getint char a,char b 獲得整數部分 void ...