一、cin>>A 和 getline(cin,A)的区别
当 cin 读取数据时,它会传递并忽略任何前导白色空格字符(空格、制表符或换行符)。一旦它接触到第一个非空格字符即开始阅读,当它读取到下一个空白字符时,它将停止读取。
getline(cin,string str) 可读取整行,包括前导和嵌入的空格,并将其存储在字符串对象中。
具体应用在“首字母大写”示例。
二、判断闰年的代码(方便日后调用)
bool isleapyear(int year) {
if ((0 == year % 4 && year % 100 != 0) || (0 == year % 400))
{
return 1;
}
else
{
return 0;
}
}
三、如何在查找元素所有元素不匹配的时候,输出No answer等提示词。
弄一个flag变量,放在循环里面,如果符合要求就把flag值改掉。如果循环完之后仍不符合要求,就根据原来flag的值,做一个if判断,输出相应的提示
#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main() {
int N;
vector<string> Student[4];
string Num, name, sex, score;
cin >> N;
for (int i = 0; i < N; i++)
{
cin >> Num >> name >> sex >> score;
Student[0].push_back(Num);
Student[1].push_back(name);
Student[2].push_back(sex);
Student[3].push_back(score);
}
int M;
cin >> M;
vector<string> num;
for (int i = 0; i < M; i++)
{
string Num_temp;
cin >> Num_temp;
num.push_back(Num_temp);
}
//——————————————————————————————————————————
for (int i = 0; i < M; i++)
{
int flag = 0;
for (int j = 0; j < N; j++) {
if (num[i] == Student[0][j]) {
cout << Student[0][j] << " " << Student[1][j] << " " << Student[2][j] << " "
<< Student[3][j] << endl;
flag = 1;
}
}
if (flag == 0) {
cout << "No Answer!" << endl;
}
}
//——————————————————————————————————————————————
return 0;
}
算法示例:
首字母大写:
#include<iostream>
#include<string>
using namespace std;
int main() {
string A;
//注意getline 和cin的不同。查一下getline的用法
while (getline(cin,A)) {
int flag = 0;
if (A[0] >= 'a' && A[0] <= 'z') {
A[0] = A[0] - 32;
}
for (char& c1 : A) {
flag++;
if (c1 == ' ' || c1 == '\t' || c1 == '\r' || c1 == '\n') {
if (A[flag] >= 'a' && A[flag] <= 'z') {
A[flag] = A[flag] - 32;
}
}
}
cout << A << endl;
}
return 0;
}