Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab5 - 11

Snippet info

Language

Cpp

Visibility

public

Author

maloy-

Created

2018-11-15T17:08:23Z

Updated

2018-11-15T17:08:23Z

#include <iostream>
using namespace std;

int main() {
    
    for (int i = 10 ; i<=22 ; i++){
        cout << "|--------------------------|" << endl; 
        cout <<"|" << i <<  " дюймов =  " << (i * 25.4) << "\tмм |" << endl ; 
        
    }
    
    cout << "|--------------------------|" << endl; 
    
    return 0;
}
INFO