1. 程式人生 > >資訊學奧賽系列教程:算數運算子練習

資訊學奧賽系列教程:算數運算子練習

程式閱讀題

2014年普及組初賽第一題

/*
輸入:2 3 4
輸出:____________
*/
#include <iostream>
using namespace std;
int main()
{
	int a, b, c, d, ans;
	cin >> a >> b >> c; 
	d = a- b; 
	a = d + c; 
	ans = a * b; 
	cout << "Ans = " << ans << endl;
	return 0;
}

2013年普及組初賽程式閱讀第一題

/*
輸入:3 5
輸出:_________
*/
#include <iostream>
using namespace std;
int main()
{
  int a, b;
  cin>>a>>b;
  cout<<a<<"+"<<b<<"="<<a+b<<endl;
}

2012年普及組初賽程式閱讀第一題:

/*
輸入:1 2 5
輸出:_______
*/
#include <iostream>
using namespace std;
int a,b,c,d,e,ans;
int main()
{
	cin>>a>>b>>c;  
	d=a+b;  
	e=b+c;  
	ans=d+e; 
	cout<<ans<<endl;
	return 0;
}