C++编程 -- 基础练习

1. 方程求解

题目:键盘输入x的值,求方程y=x*x+2*x-10所对应的y值。

知识点:将输入值通过数学计算,得到所需要的方程的解。

方法1:

# include <iostream>
using namespace std; 
int main()
{
	int x, y;
	cin>>x;
	y=x*x+2*x-10;
	cout<<y<<endl;
	return 0;
}

方法2:

# include <iostream>
using namespace std; 
int main()
{
	int x,y;
    scanf("%d",&x);
    y=x*x+2*x-10;
    printf("%d",y);
  
	return 0;
}

2. 输出变量所占储存空间大小

题目:编写程序,输出short, int, long, float, double, char等类型变量所占的存储空间大小

知识点:利用sizeof函数即可求解

方法1:

#include <iostream>
using namespace std; 
int main()
{
	printf("%d" , sizeof(short)); 
    printf(" %d" , sizeof(int)); 
	printf(" %d" , sizeof(long)); 
	printf(" %d" , sizeof(float)); 
	printf(" %d" , sizeof(double)); 
	printf(" %d" , sizeof(char));
	return 0;
}

方法2:

#include <iostream>
using namespace std; 
int main()
{
	int x, y;
	cin>>x;
	y=x*x+2*x-10;
	cout<<y<<endl;
	return 0;
}

3. 求两数的和与差

题目:从键盘输入两个整数,求这两个整数的和与差(第一个数减第二个数)并输出。

知识点:将输入的两个变量进行加减运算并输出

方法1:

#include <iostream>
using namespace std; 
int main()
{
	int a,b1,z,w;
    scanf("%d%d",&a,&b1);
	z=a+b1;
    w=a-b1;
	printf("%d %d",z,w);
	return 0;
}

方法2:

#include <iostream>
using namespace std; 
int main()
{
	int x, y;
	cin>>x;
	y=x*x+2*x-10;
	cout<<y<<endl;
	return 0;
}

4. 计算长方体体积

题目:编写程序,输入一个长方体的长、宽和高(整数),输出这个长方体的体积。

知识点:将输入的三个变量相乘并输出

方法1:

#include <iostream>
using namespace std; 
int main()
{
	int a,b1,c1,v;
	scanf("%d%d%d",&a,&b1,&c1);
	v=a*b1*c1;
    printf("%d",v);
	return 0;
}

方法2:

#include <iostream>
using namespace std; 
int main()
{
	int x, y;
	cin>>x;
	y=x*x+2*x-10;
	cout<<y<<endl;
	return 0;
}

5. 交换变量的值

题目:编写一个C++程序,输入两个整数a,b,交换a和b的数值,然后输出

知识点:将输入的两个数通过第三个变量来交换数值

方法1:

#include <iostream>
using namespace std; 
int main()
{
	int a,b,temp;
	cin>>a>>b;
	temp=a;
	a=b;
	b=temp;
	cout<<a<<" "<<b<<endl;

	return 0;
}

方法2:

#include <iostream>
using namespace std; 
int main()
{
	int a,b,temp;
	scanf("%d%d",&a,&b);
	temp=b;
	b=a;
	a=temp;
    printf("%d %d",a,b);
	return 0;
}

6.输出自己信息

题目:编写一个程序,在屏幕上输出自己所在的学院、学号、姓名、籍贯。输出信息如下:

          我在计算机学院

          我的学号是1311101

          我叫陈三

          我的籍贯是梅州

知识点:无

方法1:

#include <iostream>
using namespace std; 
int main()
{
	printf("我在计算机学院\n");
    printf("我的学号是1311101\n");
	printf("我叫陈晰\n");
    printf("我的籍贯是梅州\n");
	return 0;
}

方法2:

#include <iostream>
using namespace std; 
int main()
{
	int a,b,temp;
	cin>>a>>b;
	temp=a;
	a=b;
	b=temp;
	cout<<a<<" "<<b<<endl;

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值