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

7月26日

时间:2017-07-27 00:59:47      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:ret   字母   ios   alt   namespace   而不是   end   时间戳   粘贴   

1.一个工程里不能同时含有多个主函数;

2.两个单引号中不能什么都不写,比如表示空格的要表示为:‘ ’,而不是:‘’;

3.两个变量之间必须要用“,”,不能用空格;

   如:int  a,b;

4.提交的时候要复制粘贴,否则交的就是白卷;

技术分享
 1 #include<iostream>
 2 #include<iomanip>
 3 using namespace std;
 4 int main()
 5 {
 6     int r;
 7     cin>>r;
 8     double L,S;
 9     L=3.14*r*2;
10     S=3.14*r*r;
11     cout<<L<< <<S<<endl;
12     return 0;
13 }
1007圆的周长和面积
技术分享
 1 #include<iostream>
 2 #include<cstdio>
 3 using namespace std;
 4 int main()
 5 {
 6     char a;
 7     int k;
 8     cin>>a>>k;
 9     char b;
10     b=a+k;
11     cout<<b<<endl;
12     return 0;
13 }
1005一个大写字母后的k个大写字母
技术分享
 1 #include<iostream>
 2 #include<cstdio>
 3 using namespace std;
 4 int main()
 5 {
 6     int x,y;
 7     cin>>x>>y;
 8     int m,n;
 9     n=(y-x*2)/2;
10     m=x-n;
11     cout<<m<< <<n<<endl;
12     return 0;
13 }
1004鸡兔同笼
技术分享
 1 #include<iostream>
 2 #include<cmath>
 3 using namespace std;
 4 int main()
 5 {
 6     double a,b,c,p,s;
 7     cin>>a>>b>>c;
 8     p=(a+b+c)/2;
 9     s=sqrt(p*(p-a)*(p-b)*(p-c));
10     cout<<s<<endl;
11     return 0;
12 }
1008海伦公式
技术分享
 1 #include<iostream>
 2 #include<cstdio>
 3 using namespace std;
 4 int main()
 5 {
 6     int x;
 7     cin>>x;
 8     int nian,yue,ri,day=60*60*24;
 9     nian=1970+x/(day*360);
10     yue=x%(day*360)/(day*30)+1;
11     ri=x%(day*30)/day+1;
12     cout<<nian<<.<<yue<<.<<ri<<endl;
13     return 0;
14 }
时间戳年份

 

7月26日

标签:ret   字母   ios   alt   namespace   而不是   end   时间戳   粘贴   

原文地址:http://www.cnblogs.com/zoutong2020/p/7242470.html

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