c++程序設計第三版例題1.2 求兩數的和

#include <iostream> using namespace std; int main(){ //求兩數之和 int a,b,sum; a=11; b=22; sum=a+b; cout<<"兩個數a與b的和是"<<"sum="<<sum; } compare with the up program, think the output? #include <iostream> usin
相關文章
相關標籤/搜索