| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1544 人关注过本帖
标题:[讨论] cin中无法解除"清除缓存"内容,请高手解决.附源码
取消只看楼主 加入收藏
钢燃
Rank: 1
等 级:新手上路
帖 子:80
专家分:0
注 册:2005-5-19
收藏
 问题点数:0 回复次数:0 
[讨论] cin中无法解除"清除缓存"内容,请高手解决.附源码

#include <iostream> #include <cassert> using namespace std;

double add(double); double fibonacci(double);

int main() { double n; bool t=true; while(t) { t=false; cout << "Please input a integer " << endl; cin >> n; assert(n<=1000); assert(n>=0); cout << endl << "1+2+3+..............+" << n << "=" << add(n) << endl; cout << "If you want to rerun around or run a other one,please input 1 " << endl; cin >> t; }

t=true; while(t) { t=false;getchar(); cout << "Please input a integer" << endl; cin >> n; assert ( n<=50 ); assert ( n>=0 ); cout << "The " << n <<"th's faibonacci is " << fibonacci( n ) <<endl; cout << "If you want to rerun around or run a other one,please input 1 " << endl; cin >> t; } return 0; }

double add(double n) { if (n>0) return n+add(n-1); else return n; }

double fibonacci( double n ) { if ( n==1 ) return 1; if ( n==2 ) return 1; return fibonacci( n-1 ) + fibonacci( n-2 ); }

搜索更多相关主题的帖子: 缓存 cin 源码 解除 
2005-09-17 13:34
快速回复:[讨论] cin中无法解除"清除缓存"内容,请高手解决.附源码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016563 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved