Example 1

如图,在梯形中阴影部分面积是150平方厘米,求梯形面积。

Example 2

已知一位小朋友的电影票价是10元,计算x为小朋友的总票价是多少?

Example 3

有一个牧场,牧场上的牧草每天都在匀速生长,这片牧场可供15头牛吃20天,或可供20头牛吃10天,那么,这片牧场每天新生的草量可供几头牛吃1天?

设:

则:

  1. 15头牛20天共吃300单位的草
  2. 20头牛10天共吃200单位的草

  1. a + 20x = 300
  2. a + 10x = 200
  3. x = (300 -200) / (20 - 10)

Example 4

  #   
 ###   
#####   

给定一个字符,用它构造一个底边长5个字符的等腰字符三角形。

Exercise

  1. Hello,World!,http://noi.openjudge.cn/ch0101/01/
    #include <iostream>
    
    int main() 
    {
    		std::cout << "Hello, World!" << std::endl;
    
    		return 0;
    }
    
  2. 输出第二个整数,http://noi.openjudge.cn/ch0101/02/
    #include <iostream>
    using namespace std;
    
    int main(){
    	int a,b,c;
    	
    	cin >> a >> b >> c;
    	cout << b << endl;
    	
    	return 0;
    }
    
  3. 对齐输出,http://noi.openjudge.cn/ch0101/03/
    #include <iostream>
    using namespace std;
    
    int main() {
    	int a,b,c;
    	
    	cin >> a >> b >> c;
    	printf("%8d %8d %8d",a,b,c);
    
    	return 0;
    }
    
  4. 字符三角形,http://noi.openjudge.cn/ch0101/08/
    #include <iostream>
    using namespace std;
    
    int main(){
    	char c;
    	cin >> c;
    	
    	cout << "  " << c << endl;
    	cout << " " << c << c << c << endl;
    	cout << c << c << c << c << c << endl; 
    	
    	return 0;
    } 
    
  5. 地球人口承载力估计,http://noi.openjudge.cn/math/7653/
    #include <iostream>
    using namespace std;
    
    int main(){
    	double x,a,y,b;
    	
    	cin >> x >> a >> y >> b;
    	printf("%.2f",(b*y-a*x)/(b-a)); 
    	
    	return 0;
    } 
    

辽师张大为@https://daweizh.github.io/csp/