一道初学者的题目 模拟出租车(HELP)
现在出发吗?yes //此处输入yes后开始执行
现在出行(M):42332 //此处输入出行距离
出行开始--
<<<<< //模拟前进 <等于10M 一行最多画10个<
.... // 省略。。太多了。。
出行结束:4233200元
题目如上
#include <iostream>
#include <string>
using namespace std;
int main()
{
long a,b,c,d,e,f,h;
string g="yes",s;
cout <<"现在出发吗?"<<endl;
cin>>s;
if(s=="yes")
{
cout <<"现在出行(M):";
cin >> a;
cout <<"出行开始--"<<endl;
b=a/10;
c=a/100;
d=b%10;
if(c<=1)
{
for(e=0;e<b;e++)
{
cout<<">";
}
if(c>1)
for (e=0;e<(c-1);e++)
{
for (f=0;f<10;f++)
cout << ">";
cout<< endl;
}
for (e=0;e<b;e++)
cout << ">";
cout <<endl;
}
h=a*100;
cout <<"出行停止:"<<h<<"元"<<endl;
}
return 0;
}
这程序我写的 不对。。
高手帮助纠正下。。谢谢。。
菜鸟新人