1. 程式人生 > >for循環作業4和5

for循環作業4和5

分享 ace col ios using stream spa style .cn

#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