Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Code_only_sin_xm
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { //--------------------------------------------------------------- public static void Main(string[] args) { for (double x=-1.1; x<0.3; x=x+0.2) { for (int m=1; m<5; m++) { Console.WriteLine( "z(x,m)= {0} при х= {1}, m= {2}" ,ZXM(x, m),x,m); } } } //- s = System.Math.Pow(s, a); -------------------------------------------------------------- public static double ZXM(double x, double m) { double f = Math.Sin(x*m); double Z = Math.Pow(x,m) * Math.Pow(f,m); return Z; } } }
run
|
edit
|
history
|
help
0
Timer2 v.1
True and false
Reverse a string
remove duplicates
Namespace addition
Planet-D v.0.6
Fibonacci Numbers
show the date
QLSV
Only unique chars into string?