标签: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; }
标签:es2017 cout include namespace ima style 技术分享 png iostream
原文地址:http://www.cnblogs.com/928990166li/p/7657817.html