码迷,mamicode.com
首页 > 其他好文 > 详细

计算并显示

时间:2018-08-02 11:20:29      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:pac   str   out   pre   space   style   ble   turn   put   

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 int main(int argc, char** argv) {
 6     
 7     double s1,s2,s3;
 8     s1=1.5;    /* 对变量s1赋值*/
 9     cout<<"s1="<<s1<<endl;
10     /* 对变量s2赋值*/    s2=2.5;
11     cout<<"s2="<<s2<<endl;
12     s3=  /* 对变量s3赋值*/  3.5;
13     cout<<"s3="<<s3<<endl;
14 
15     cout<<"s1+s2+s3="<<s1+s2+s3<<endl;        //计算并显示
16     //计算并显示 cout<<"s1+s2+s3="<<s1+s2+s3<<endl; 
17     return 0;
18 }

 

计算并显示

标签:pac   str   out   pre   space   style   ble   turn   put   

原文地址:https://www.cnblogs.com/borter/p/9405607.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!