PAT-乙-1086 1086 就不告訴你 (15 分)
程式碼
#include <iostream> #include <sstream> using namespace std; string intToString(long long t){ stringstream ss; ss<<t; string tmp; ss>>tmp; return tmp; } int stringToInt(string t) { stringstream ss; ss<<t; int tmp; ss>>tmp; return tmp; } int main() { int a, b; cin>>a>>b; int c = a*b; string s = intToString(c); string s2; for(int i=s.length()-1; i>=0; i--){ s2 += s.at(i); } c = stringToInt(s2); cout<<c<<endl; return 0; }
註解
1、int與string的轉換。用stringstream。
結果
相關推薦
PAT-乙-1086 1086 就不告訴你 (15 分)
程式碼 #include <iostream> #include <sstream> using namespace std; string intToString(long long t){ stringstream ss;
PAT乙級 1086 就不告訴你 (15 分)
做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式: 輸入在第一行給出兩個不超過 1000 的正整數 A 和 B,其間以空格分隔。 輸出格式: 在一行中倒著
PAT 1086 就不告訴你(15 分)
1086 就不告訴你(15 分) 做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式: 輸入在第一行給出兩個不超過 1000 的正整數 A
PAT 乙級 1086 就不告訴你(15 分)
做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式: 輸入在第一行給出兩個不超過 1000 的正整數 A 和 B,其間以空格分隔。 輸出格式: 在一行中倒
乙級PAT 1086 就不告訴你 (15 分)
做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式: 輸入在第一行給出兩個不超過 1000 的正整數 A 和 B,其間以空格分隔。 輸出格式: 在一行中倒著輸出 A
PAT 1086 就不告訴你(15 分)- 乙級
做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式:輸入在第一行給出兩個不超過 100
1086 就不告訴你 (15 分)
做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式: 輸入在第一行給出兩個不超過 1000 的正整數 A 和 B,其間以空格分隔。 輸出格式: 在一行
1086 就不告訴你 (15 分)
urn flag pan iostream cin ios class == ret #include <iostream> using namespace std; int arr[100] = {0}; int main(){ int n
PAT1086就不告訴你(java實現)
題目地址:https://pintia.cn/problem-sets/994805260223102976/problems/1038429065476579328 題目描述: 做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。
PAT-乙-1056 1056 組合數的和 (15 分)
程式碼 #include <stdio.h> int main() { int n; scanf("%d", &n); int a[n]; for(int i=0; i<n; i++){ scanf("%d", &a[i]
PAT-乙-1011 1011 A+B 和 C (15 分)
程式碼(java) import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(Syst
PAT-乙-1074 1074 宇宙無敵加法器 (20 分)
程式碼 #include <iostream> using namespace std; int main() { string s, s1, s2; cin>>s>>s1>>s2; while(s1.length()
PAT-乙-1069 1069 微博轉發抽獎 (20 分)
程式碼 #include <iostream> #include <vector> #include <map> using namespace std; int main() { int m, n, s; cin>>
PAT-乙-1060 1060 愛丁頓數 (25 分)
程式碼 #include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int n; cin>>n;
PAT-乙-1010 1010 一元多項式求導 (25 分)
程式碼 #include <stdio.h> int main() { int a, b; int flag = 1; while(scanf("%d %d", &a, &b) != EOF) { if(a*b) {
PAT-乙-1032 1032 挖掘機技術哪家強 (20 分)
程式碼 #include <iostream> #include <map> using namespace std; int main() { int n; cin>>n; map<int, int&g
PAT-乙-1075 1075 連結串列元素分類 (25 分)
程式碼 #include <iostream> #include <vector> using namespace std; const int MAX = 100000; struct node { int id; int
【PAT】B1006 換個格式輸出整數(15 分)
pac sca printf alloc sin clu malloc main () #include<cstdio> #include<malloc.h> #include<algorithm> using namespace std
PAT 1086 就不告訴你
clu 分享圖片 輸出格式 namespace 整數 lan .com 圖片 pro https://pintia.cn/problem-sets/994805260223102976/problems/1038429065476579328 做作業的時候,鄰座的小盆友
【PAT乙級】1086 就不告訴你
做作業的時候,鄰座的小盆友問你:“五乘以七等於多少?”你應該不失禮貌地圍笑著告訴他:“五十三。”本題就要求你,對任何一對給定的正整數,倒著輸出它們的乘積。 輸入格式: 輸入在第一行給出兩個不超過 1000 的正整數 A 和 B,其間以空格分隔。 輸出格式: 在一行中倒著輸出 A