Сообщения

Сообщения за май, 2025

DSA - Loop

 1. Print x: int main () { int n; cin >> n; for ( int i = 0 ; i < n * n; i++) { int row = i / n; int col = i % n; if (row == col || row + col == n - 1 ) { cout << "*" ; } else { cout << " " ; } if (col == n - 1 ) { cout << endl ; } } }

yaml

logging : level : ROOT : WARN az.kapitalbank.atlas : DEBUG management : endpoints : web : exposure : include : [ "env" , "health" , "info" , "refresh" ] health : consul : enabled : false vault : enabled : false spring : datasource : url : jdbc:oracle:thin:@${ DB_HOST :10.0.32.28}:${ DB_PORT :1521}/externalinteg username : ${ DB_USERNAME :MKR} password : ${ DB_PASSWORD :MdfdhKsgdskad97067!!} driver-class-name : oracle.jdbc.OracleDriver type : com.zaxxer.hikari.HikariDataSource hikari : pool-name : MyHikariCP maximum-pool-size : 10 minimum-idle : 5 connection-timeout : 30000 idle-timeout : 300000 max-lifetime : 1800000 jpa : hibernate : ddl-auto : none properties : hibernate : format_sql : true show_sql : true jdbc : batch_versioned_data : true batch_size : 20 ord...