会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
spring学习笔记
算法竞赛入门经典 1.1 算术表达式
//计算并输出1+2的值(C++) #include<iostream> using namespace std; int main() { cout<<1+2<<endl; //结果为3 return 0; } //计算并输出3-4的结果 #include<iostream> using namespace std; int main() { cout<<3-4<<endl; //结果为-1 return 0; } //计算并输出5X6的结果 #include<iostream> using namespace std; int main() { cout<<5*6<<endl; //结果为30 return 0; } //计算并输出8÷4的结果 #include<iostream> using namespace std; int main() { cout<<8/4<<endl; //结果为2 return 0; } //计算并输出8÷5的结果 #include<iostream> using namespace std; int main() { cout<<8/5<<endl; //结果为1,整数/整数=整数 return 0; } #include<stdio.h> #include<math.h> int main() { printf("%.8lf\n",1+2*sqrt(3.0)/(5-0.1)); return 0; }
posted on
2012-03-23 22:12
spring学习笔记
阅读(
185
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
联系
订阅
管理
公告