如何让最后输入的一个数据输出
#include "stdafx.h"#include"D:\c++数据\VisualStudio2012\1\Sales_item.h"
#include<iostream>
using namespace std;
//int _tmain(int argc, _TCHAR* argv[])
int main()
{
Sales_item item1,item2;int a=1;
if(cin>>item1)
{
while(cin>>item2)
{
if(item1.isbn()==item2.isbn())
++a;
else {
cout<<item1<<" appear "<<a<<" times "<<endl;
item1=item2;
a=1;
}
}
cout<<item2<<" appear "<<"1"<<" time "<<endl;
}
return 0;
}
int main()
{
Sales_item item1, item2; int a = 1;
if (cin >> item1)
{
while (cin >> item2)
{
if (item1.isbn() == item2.isbn())
{
++a;
}
else
{
cout << item1 << " appear " << a << " times " << endl;
item1 = item2;
a = 1;
}
}
cout << item2 << " appear " << "1" << " time " << endl; //这条程序是不会执行的,因为while(cin>>item2)一直在等待着键盘录入数据,这个条件一直为真,如果想要跳出去,可以在else里加个break跳出循环。
}
return 0;
} Mountain_gs 发表于 2018-9-20 09:23
当输入三个不同数据时就没用了诶 Mountain_gs 发表于 2018-9-20 09:23
还想请教下你回复的时候是怎么弄出来这个有行的格式的 469826336 发表于 2018-9-25 15:10
当输入三个不同数据时就没用了诶
这是因为你输入不同数据时,程序执行else里的内容,直接break跳出循环了,可以在while语句里加一个判断条件,当item=='#'时,跳出循环,这样就不用break了;#include<iostream>
using namespace std;
//int _tmain(int argc, _TCHAR* argv[])
int main()
{
int item1, item2; int a = 1;
char flag;
if (cin >> item1)
{
while (cin >> item2&&item2!='#')
{
if (item1 == item2)
++a;
else
{
cout << item1 << " appear " << a << " times " << endl;
item1 = item2;
a = 1;
//break;
/*cout << "是否继续,如果跳出请输入n"<<endl;
cin >> flag;
if (flag == 'n')
{
break;
}*/
}
}
cout << item2 << " appear " << "1" << " time " << endl;
}
system("pause");
return 0;
} 469826336 发表于 2018-9-25 15:12
还想请教下你回复的时候是怎么弄出来这个有行的格式的
下面的回复栏最上面有一个<>,这个是插入代码用的,你把代码拷进去就行了
页:
[1]