工大后院

 找回密码
 加入后院

扫一扫,访问微社区

QQ登录

只需一步,快速开始

搜索
查看: 1553|回复: 3

算法练习

[复制链接]
发表于 2008-4-17 15:24 | 显示全部楼层 |阅读模式
虽然不参与ACM。。不过做些算法练习也好...

http://acm.zju.edu.cn/show_problem.php?pid=1001
  1. #include < iostream >
  2. using namespace std;
  3. int main(){
  4.     int a,b;
  5.     while(cin>>a>>b){
  6.        cout<<a+b<<endl;
  7.     }
  8.     return 0;
  9. }
复制代码
http://acm.pku.edu.cn/JudgeOnline/problem?id=1000
  1. #include < iostream >
  2. using namespace std;
  3. int main(){
  4.    int a,b;
  5.    cin>>a>>b;
  6.    cout<<a+b<<endl;
  7.    return 0;
  8. }
复制代码

[ 本帖最后由 onttpi 于 2008-4-17 17:49 编辑 ]
 楼主| 发表于 2008-4-17 15:51 | 显示全部楼层

TOJ打不开。。。


又搜了一次如何对C++中的输出小数位进行控制。。
http://acm.zju.edu.cn/show_problem.php?pid=1048
  1. #include < iostream >
  2. #include < iomanip >
  3. using namespace std;
  4. int main(){
  5.   double i,k=0.0;
  6.   for(int j=0;j<12;++j){
  7.      cin>>i;
  8.      k+=i/12;
  9.   }
  10.   cout<<setprecision(2)<<setiosflags(ios::fixed);
  11.   cout<<"$"<<k<<endl;
  12.   return 0;
  13. }
复制代码

[ 本帖最后由 onttpi 于 2008-4-17 16:14 编辑 ]
回复

使用道具 举报

发表于 2008-4-17 17:48 | 显示全部楼层
竟然看成Q
回复

使用道具 举报

 楼主| 发表于 2008-4-17 17:50 | 显示全部楼层

yin者见yin..
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 加入后院

本版积分规则

QQ|Archiver|手机版|小黑屋|广告业务Q|工大后院 ( 粤ICP备10013660号 )

GMT+8, 2025-8-30 21:29

Powered by Discuz! X3.5

Copyright © 2001-2024 Tencent Cloud.

快速回复 返回顶部 返回列表