ACM訓練題-第四題-A + B Problem
Time limit1000 msMemory limit32768 kB
total:Memory 1792kB
Calculate A + B .
Input
Each line will contain two integers A and B . Process to end of file.
Output
For each case, output A + B in one line.
Sample Input
1 1
Sample Output
2
問題連結:https://vjudge.net/problem/hdu-1000?tdsourcetag=s_pctim_aiomsg
問題簡述:計算a+b
程式說明:a+b的演算法
AC通過的C++語言程式如下:
#include <iostream>
using namespace std;
int main()
{
int i,j,sum;
while (cin >> i >> j)
{
sum = i + j;
cout << sum<<endl;
}
}
相關推薦
ACM訓練題-第四題-A + B Problem
Time limit1000 msMemory limit32768 kB total:Memory 1792kB Calculate A + B . Input Each line will contain two integers A and B . Process to end o
ACM周賽第四題
題目連結:https://vjudge.net/problem/HDU-2039 #include <iostream> using namespace std; int main() { int i, M; cin >> M; double *p; p
第一期訓練題第四題
問題連結:https://vjudge.net/problem/hdu-1000?tdsourcetag=s_pctim_aiomsg 問題簡述:輸入多組A和B,在每個回合內求A+B的值。 程式說明:用while語句實現多組輸入輸出。 AC程式碼: #include<i
PAT A 1151(甲級 2018年9月真題第四題)
1151 LCA in a Binary Tree(30 分) 作者: CHEN, Yue 單位: 浙江大學 時間限制: 1000 ms 記憶體限制: 64 MB 程式碼長度限制: 16 KB The lowest common ancestor (LCA) of
劍值offer66題之每日一題——第四題
題目描述: 輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列{1,2,4,7,3,5,6,8}和中序遍歷序列{4,7,2,1,5,3,8,6},
劍指offer刷題第四題
arr null true tps 復雜度 分享 system brush www 第四題 重建二叉樹 思路:通過前序序列確定根節點,在中序序列找到其位置,確定左右子樹,並把對應左右子樹的數組根據根節點位置拷貝到新數組中,遞歸調用得到左右子樹。 時間復雜度:O(n)
水題 第四站 HDU A + B Problem II
一道很簡單的題目讓我做得噁心無比,大數問題,不熟悉java,還是用C++寫吧。顯然需要用到字串,然後再將字串中的數字轉化為整數型別進行加法運算。去年做類似題目的時候還只知其然不知其所以然,現在明白了為什麼不能直接讀入陣列。 然而時隔一年也忘記了思路,加上當時沒有總結過,只是仿照程式碼敲
ACM第一次訓練第四題
#include <stdio.h> #include <stdlib.h> int main() { int a,b; while(scanf("%d %d",&a,&b)!=EOF) { printf("%d\n
第四題:求A+B
題目,求A+B,每一行將包含兩個整數A和B程序到檔案結束。對於每種情況,在一行中輸出A+B。 題解:輸入A.B,再建立迴圈,直到不再輸入時停止,輸出A+B #include <iostream> using namespace std; int main() { int a
ACM第一期練習題第八小題:A + B Problem Too
click here to have a try first 題目要求: Time limit : 1000 ms Memory : 32768 KB 題目原題: This problem is also a A + B problem,but it has a little dif
ACM第一期練習第四小題:A + B Problem
A+B Problem Calculate A + B. Input Each line will contain two integers A and B. Process to end of file. Output For each case, output A + B in one
杭電ACM第1002題(A + B Problem II)答案 java版
方法一: package hduacm; import java.util.Scanner; public class Main{ public static void main(String[] args) throws Exception{
華為程式設計題第四道(108)--cin>>hex>>a的用法
一.count函式 algorithm標頭檔案定義了一個count的函式,其功能類似於find。這個函式使用一對迭代器和一個值做引數,返回這個值出現次數的統計結果。 編寫程式讀取一系列in
ACM訓練題-第七題-計算球體積
Time limit1000 msMemory limit32768 kB total:Time 15ms Memory 1800kB 根據輸入的半徑值,計算球的體積。 Input 輸入資料有多組,每組佔一行,每行包括一個實數,表示球的半徑。 Output 輸出對應的球的體積,對於每組輸
A + B Problem Too HDU - 2101(語言訓練題)
This problem is also a A + B problem,but it has a little difference,you should determine does (a+b) could be divided with 86.For example ,if (A+B)
ACM第四題
題目連結:https://vjudge.net/problem/hdu-1000?tdsourcetag=s_pctim_aiomsg #include <iostream> using namespace std; int main() { int A, B; whil
2018-2019賽季多校聯合新生訓練賽第四場(2018/12/9)補題題解
感慨 這次難度有了明顯的上升啊。。。中間一些題也是挺賤的 A 數一數(思維) 實際上根據觀察一個奇數對應一個偶數是一張正反面,那麼給定兩個區間是不是可以直接列舉呢? 解法 ①列舉,如果中間的數有等於偶數的那麼頁數加一 ②輸出,如果第一頁是奇數那麼頁數再加一否則直接輸出 程式碼 #include
2018-2019賽季多校聯合新生訓練賽第四場題解與補題
這一場比賽我是在宿舍裡打的,環境非常的惡劣(噓) 因為舍友一直在說話啥的 不過這也是沒辦法的事,畢竟是週末嘛~ 上來第一題就給我嚇破膽了 ,嚇得我拿了一個本子在那個地方瘋狂計算,把每種情況都寫出來以後才敢開始coding 後來提交發現已經好多人a了這道題,挺不應該的 還有一個要注意的是,千萬
ACM 第四題
A + B Problem Time limit 1000 ms Memory limit 32768 kB OS Windows Calculate A + B. Input Each line will contain two integers A and B. Process
第九屆藍橋杯省賽C++B組第四題
測試次數 x星球的居民脾氣不太好,但好在他們生氣的時候唯一的異常舉動是:摔手機。 各大廠商也就紛紛推出各種耐摔型手機。x星球的質監局規定了手機必須經過耐摔測試,並且評定出一個耐摔指數來,之後才允許上市流