• 参考代码1001-1010


    1001 Hello,World!

    1 #include <iostream>
    2 using namespace std;
    3 int main()
    4 {
    5     cout<<"Hello,World!"<<endl; 
    6     return 0;
    7 }

    1002 输出第二个整数

    1 #include <iostream>
    2 using namespace std;
    3 int main()
    4 {    
    5     int a,b,c;
    6     cin>>a>>b>>c;
    7     cout<<b<<endl; 
    8     return 0;
    9 }

    1003 重要的事情说三遍

    1 #include <bits/stdc++.h>           
    2 using namespace std;                
    3 int main()                      
    4 {   
    5     cout<<"父亲节快乐!"<<endl;
    6     cout<<"父亲节快乐!"<<endl;
    7     cout<<"父亲节快乐!"<<endl;
    8     return 0;         
    9   } 

    1004 字符三角形

     1 #include <bits/stdc++.h>           
     2 using namespace std;                
     3 int main()                      
     4 {   
     5     char a;
     6     cin>>a;
     7     cout<<"  "<<a<<endl;
     8     cout<<" "<<a<<a<<a<<endl;
     9     cout<<a<<a<<a<<a<<a<<endl;
    10     return 0;         
    11   } 

    1005 A+B -1

    1 #include <bits/stdc++.h>           
    2 using namespace std;                
    3 int main()                      
    4 {   
    5     int a,b;
    6     cin>>a>>b;
    7     cout<<a<<'+'<<b<<'='<<a+b<<endl; 
    8     return 0;         
    9   } 

    1006 长方形的周长和面积

    #include <bits/stdc++.h>           
    using namespace std;                
    int main()                      
    {   
        int a,b,c,d;
        cin>>a>>b;
        c=(a+b)*2;
        d=a*b;
        cout<<c<<' '<<d<<endl;
         return 0;         
      } 

    1007 数字之和

     1 #include<iostream>
     2 using namespace std;
     3 int main(){
     4     int n,a,b,c;
     5     cin >> n;   
     6     a = n % 10;
     7     b = n / 10 % 10; 
     8     c = n / 100;
     9     cout << a + b + c << endl;
    10     return 0;
    11 }

    1008 (a+b)/c的值

    1 #include <bits/stdc++.h>           
    2 using namespace std;                
    3 int main()                      
    4 {   
    5     int a,b,c;
    6     cin>>a>>b>>c;
    7     cout<<(a+b)/c<<endl;
    8      return 0;         
    9   } 

    1009 买苹果

     1 #include <bits/stdc++.h>           
     2 using namespace std;                
     3 int main()                      
     4 {   
     5     int a,b,c;
     6     cin>>a;
     7     b=a/6;
     8     c=a%6;
     9     cout<<b<<" "<<c<<endl;
    10      return 0;         
    11   }

    1010 瑜伽运动计时

     1 #include <bits/stdc++.h>           
     2 using namespace std;                
     3 int main()                      
     4 {   
     5     int x,a,b,c;
     6     cin>>x;
     7     a=x/3600;
     8     b=x%3600/60;
     9     c=x%60;
    10     cout<<a<<" "<<b<<" "<<c<<endl;
    11      return 0;         
    12   } 
  • 相关阅读:
    UVA 562 Dividing coins
    who is in front of me 解题报告
    UVA 111 历史考试
    UVA 1045 最长公共子序列
    HDU 1003 解题报告
    ACM2014-04训练计划
    基于邻接表的新顶点的增加
    4004.六度空间理论
    4003.基于Dijsktra算法的最短路径求解
    4002.基于快排思想的查找
  • 原文地址:https://www.cnblogs.com/pythen/p/11684762.html
Copyright © 2020-2023  润新知