Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab6_6

Snippet info

Language

Cpp

Visibility

public

Author

maloy-

Created

2018-12-10T18:57:40Z

Updated

2018-12-10T18:57:40Z

#include <iostream>
using namespace std;

int main() {
    const int n = 20 ; 
    int a[20];
    int x = 0 ; 
    for (int i = 20 ; i >= 1 ; i--){
        a[x] = i ;
        cout << a[x] << endl ;
        x++;
    }
    
    
    
    
    return 0;
}
INFO