string filter = "";
if (filterCountryPanel.SelectedIndex != 0)
filter = string.Format("country = '{0}'", filterCountryPanel.SelectedItem.ToString());
if (filterGenrePanel.SelectedIndex != 0)
filter += (filter == "" ? "" : " and ") + string.Format("genre = '{0}'", filterGenrePanel.SelectedItem.ToString());
(listRadioStation.DataSource as DataTable).DefaultView.RowFilter = filter == ""?null:filter;
//левая и правая границы отрезка, количество точек
$a = readline("Левая граница отрезка a = ");
$b= readline("Правая граница отрезка b = ");
$n = readline("Количество точек n = ");
echo "i |x |y \n";
$x = $a;
$dx = ($b - $a) / ($n-1); //расстояние между точками
for ($i = 1; $i <=$n; $i++)
{
$y = sin($x) * atan($x); //вычисление значения функции
echo sprintf("%3d%10.3f%10.3f\n",$i,$x,$y);
$x = $a + $i*$dx; //вычисление значения аргумента
}
var data = `[ -----] system configuration
[ -----] system configuration save
[ -----] system configuration factory-reset
[ ---H-] system environment
[ n--H-] system environment set`;
console.log(data.split('\n').map(e=>e.replace(/\[.*\] (.*)/,"'$1'").split(" ").join(".")).join("|"))
if (e.target === document.getElementById('btn')) {
for ( let i = 0; i < input.length; i++ ) {
if (input[i].value === '')
return alert("Заполните все поля")
}
return alert("Все поля заполнены")
}
private void Start()
{
System.Random r = new System.Random();
int result;
int x = 5, y = 10;
result = r.Next(x, y); // x - минимальное, y - максимальное возможные числа
}
public static void EncryptFile(string inputFile, string outputFile){
using (var rijndael = RijndaelManaged.Create()){
rijndael.GenerateIV();
rijndael.GenerateKey();
using (var inputStream = File.OpenRead(inputFile))
using (var outputStream = new FileStream(outputFile, FileMode.Create, FileAccess.Write))
using (var encStream = new CryptoStream(outputStream, rijndael.CreateEncryptor(), CryptoStreamMode.Write)){
Task.Run(() =>{
double len = inputStream.Length;
while (outputStream.Length < inputStream.Length){
int currentLineCursor = Console.CursorTop;
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write(new string(' ', Console.WindowWidth));
Console.SetCursorPosition(0, currentLineCursor);
Console.Write(String.Format("Завершено на {0}%", Math.Round(((double)outputStream.Length / len * 100), 2)));
Thread.Sleep(100);
}
});
inputStream.CopyTo(encStream);
Console.WriteLine("\nЗавершено!");
}
}
}
клиенту, естественно, верить нельзя
function changeCatalog(nameyeti) {
let wrap = document.querySelector('.table');
wrap.innerHTML = '';
data.forEach((item) => {
console.log(nameyeti)
console.log(item[nameyeti])
let content = `<div class="">${item[nameyeti].username}</div>`;
wrap.insertAdjacentHTML('beforeend', content);
})
}
Console.ForegroundColor = ConsoleColor.White;
Console.BackgroundColor = ConsoleColor.Green;
Console.Clear();
Console.WriteLine("Hello");
Console.ReadKey();