PTA 就不告訴你(整數與字串轉換 迭代器)

2021-10-08 07:58:10 字數 752 閱讀 1297

做作業的時候,鄰座的小盆友問你:「五乘以七等於多少?」你應該不失禮貌地圍笑著告訴他:「五十三。」本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。

輸入格式:

輸入在第一行給出兩個不超過 1000 的正整數 a 和 b,其間以空格分隔。

輸出格式:

在一行中倒著輸出 a 和 b 的乘積。

輸入樣例:

5 7
輸出樣例:

53
1000x1000 =1000000,倒著應該是1,所以要刪掉最後的0.

#include

using

namespace std;

intmain()

//整數轉化成字串

stringstream ss;

ss

res = ss.

str();

//倒敘輸出

string::reverse_iterator riter;

for( riter = res.

rbegin()

; riter < res.

rend()

; riter++

)}

整數轉字串

將輸入的整數轉化為字串。輸入 整數 輸出 指向字串的指標 函式原型 char shuzi2zifu int n include include includechar shuzi2zifu int n else flag 0 int m n while n printf d n count p ch...

字串轉整數

題目 題目也沒給樣例,做起來覺得怪怪的,注意以下幾點之後就ac啦 需要去掉首尾空字元 需要判斷符號 碰到非數字字元就捨棄 include include using namespace std atoi 表示 ascii to integer 把字串轉換成整型數的乙個函式 1 需要去掉首尾空字元 2...

字串轉整數

題目描述 輸入乙個由數字組成的字串,把它轉換成整數並輸出。例如 輸入字串 123 輸出整數123。給定函式原型int strtoint const char str 實現字串轉換成整數的功能,不能使用庫函式atoi。分析與解答 本題考查的實際上就是字串轉換成整數的問題,或者說是要你自行實現atoi函...