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

for循环作业4和5

时间:2017-10-12 21:46:51      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:es2017   cout   include   namespace   ima   style   技术分享   png   iostream   

#include<iostream>
using namespace std;
int main(){
    int i,j;
    for(i=1;i<=5;i++){
        for(j=5;j>=i;j--){
            cout<<j;
        }
        cout<<endl;
        }
}

技术分享

 

 

 

#include <iostream>
using namespace std;
int main(){
   for(int i=1;i<=9;i++){
   for(int j=1;j<=i;j++){
   cout<<j<<"*"<<i<<"="<<j*i<<"\t";
   }
   cout<<endl;
   }
   return 0;
}

技术分享

for循环作业4和5

标签:es2017   cout   include   namespace   ima   style   技术分享   png   iostream   

原文地址:http://www.cnblogs.com/928990166li/p/7657817.html

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