c++primer plus 第六章习题

#include<iostream>
#include<stdlib.h>
//第六章习题
using namespace std;
int main()
{
	char ch;
	cin.get(ch);
	while (ch != '@')
	{
		if (isalpha(ch))
		{
			if (islower(ch))
				cout << char(ch - 32);
			else if (isupper(ch))
				cout << char(ch + 32);

		}
		else if(!(isdight(ch)))
			cout << ch;
		cin.get(ch);
	}
	system("pause");
	return 0;
}

#include<iostream>
#include<stdlib.h>
//第六章习题
using namespace std;
int main()
{
	double donation[10];
	double average=0,sum=0;
	int i=0,num=0;
	cout << "please enter your number:";
	while (i<10&&cin>>donation[i])
	{
		cout << "please enter your number:";
		sum += donation[i];
		i++;
	}
	average = sum / i;
	cout << "平均值:" <<average << endl;
	for (int j = 0; j < i; j++)
	{
		if (donation[j]>average)
		{
			num++;
		}
	}
	cout << "超过平均值的数字个数:" << num << endl;
	system("pause");
	return 0;
}



#include<iostream>
#include<stdlib.h>
//第六章习题
using namespace std;
void menu();
int main()
{
	menu();
	char choice;
	
	while (cin>>choice&&choice!= 'c' && choice != 'p' && choice != 't' && choice != 'g')
	{
		cout << "Please enter c p t g :";
	}
	switch (choice)
	{
	case 'c': cout << "I love you!\n"; break;
	case 'p':cout << "I hate you!\n"; break;
	case't':cout << "I miss you!\n"; break;
	case'g':cout << "oh my gald!\n"; break;
	}
	system("pause");
	return 0;
}
void menu()
{
	cout << "Please enter c p t g :\n"
		"c) carnivore          p) pianist\n"
		"t) tree               g) game\n";
}



#include<iostream>
#include<stdlib.h>
//第六章习题
using namespace std;
void menu();
int main()
{
	menu();
	char choice;
	cin >> choice;
	while (choice != 'q')
	{
		switch (choice)
		{
			case 'a': cout << "I love you!\n"; break;
			case 'b':cout << "I hate you!\n"; break;
			case'c':cout << "I miss you!\n"; break;
			case'd':cout << "oh my gald!\n"; break;
		}
		cout << "Enter your choice:";
		cin >> choice;
	}
	
	system("pause");
	return 0;
}
void menu()
{
	cout << "Please enter a b c d q :\n"
		"a) carnivore          b) pianist\n"
		"c) tree               c) game\n"
		"q) quit\n"
		"Enter your choice:";
}



#include<iostream>
#include<stdlib.h>
//第六章习题
using namespace std;
void menu();
int main()
{
	int choice;
	double tax;
	cout << "Enter your salary:";
	while (cin >> choice)
	{
		if (choice < 0)
			break;
		else if (choice <= 5000)
		{
			tax = 0;
			cout << "Tax:" << tax << endl;
		}
		else if (choice>5000&&choice<=15000)
		{
			tax = (choice-5000)*0.1;
			cout << "Tax:" << tax << endl;
		}
		else if (choice>15000 && choice <= 35000)
		{
			tax = (choice-15000)*0.15 + 10000 * 0.1;
			cout << "Tax:" << tax << endl;
		}
		else
		{
			tax = (choice-35000)*0.2 + 20000 * 0.15 + 10000 * 0.1;
			cout << "Tax:" << tax << endl;
		}
		cout << "Enter your salary:";
	}

	system("pause");
	return 0;
}



#include<iostream>
#include<stdlib.h>
#include<string>
#include<cstring>
//第六章习题
using namespace std;
struct donate
{
	string  name;
	double  money;
};
int main()
{
	
	int num;
	cout << "Please enter donate numbers:";
	cin >> num;
	cin.get();
	donate *d1 = new donate[num];
	for (int i = 0; i < num; i++)
	{
		cout << "Please enter name:";
		getline(cin,d1[i].name);
		cout << "Please enter money:";
		cin >> d1[i].money;
		cin.get();
	}
	cout << "Grand Patrons:";
	int counter=0;
	for (int i = 0; i < num; i++)
	{
		if (d1[i].money>10000)
		{
			cout << d1[i].name << '\t'; counter++;
		}

	}
	if (counter == 0)
	{
		cout << "None !" << endl;
	}
	cout << '\n';
	counter = 0;
	cout << "Patrons:";
	for (int i = 0; i < num; i++)
	{
		if (d1[i].money < 10000)
		{
			cout << d1[i].name << '\t'; counter++;
		}		
	}
	cout << "\n";
	if (counter == 0)
	{
		cout << "None !" << endl; 
	}
  delete[]d1;
	system("pause");
	return 0;
}


#include<iostream>
#include<stdlib.h>
#include<string>
#include<cstring>
//第六章习题
using namespace std;

int main()
{
	cout << "Enter words(q to quit):";
	string s;
	int counter=0,i=0,j=0;
	while (cin >> s)
	{
		if (s[0] == 'q' || s[0] == 'Q')
			break;
		else if (s[0] == 'a' || s[0] == 'A' || s[0] == 'e' || s[0] == 'E' ||
			s[0] == 'i' || s[0] == 'I')
			counter++;
		else if (s[0] == 'b' || s[0] == 'c')
			i++;
		else
			j++;
	}
	cout << counter << "words begin with vowels" << endl;
	cout << i << "words begin with constants" << endl;
	cout << j << "words begin with others" << endl;
	system("pause");
	return 0;
}



#include<iostream>
#include<stdlib.h>
#include<fstream>
//第六章习题
using namespace std;

int main()
{
	ifstream infile;
	int count=0;
	infile.open("1.txt");
	char s;
	infile >> s;
	while (infile.good())
	{
		++count;
		infile >> s;
	}
	cout << count << " Items!\n";
	infile.close();
	system("pause");
	return 0;
}




#include<iostream>
#include<stdlib.h>
#include<string>
#include<cstring>
//第六章习题
using namespace std;
struct donate
{
	string  name;
	double  money;
};
int main()
{
	
	int num;
	cout << "Please enter donate numbers:";
	cin >> num;
	cin.get();
	donate *d1 = new donate[num];
	for (int i = 0; i < num; i++)
	{
		cout << "Please enter name:";
		getline(cin,d1[i].name);
		cout << "Please enter money:";
		cin >> d1[i].money;
		cin.get();
	}
	for (int i = 0; i < num; i++)
	{
		cout <<"Name:"<< d1[i].name <<endl;
		cout <<"Money:"<< d1[i].money << endl;
	}
    delete[]d1;
	system("pause");
	return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值