C# Sharp Exercises: Add one millisecond to a DateTime value

文章推薦指數: 80 %
投票人數:10人

Write C# Sharp Program to add one millisecond and 2.5 milliseconds to a given date value and display each new value and the difference between ... home FrontEnd HTML CSS JavaScript HTML5 Schema.org php.js TwitterBootstrap ResponsiveWebDesigntutorial ZurbFoundation3tutorials PureCSS HTML5Canvas JavaScriptCourse Icon Angular Vue Jest Mocha NPM Yarn BackEnd PHP Python Java Node.js Ruby Cprogramming PHPComposer Laravel PHPUnit Database SQL(2003standardofANSI) MySQL PostgreSQL SQLite NoSQL MongoDB Oracle Redis ApolloGraphQL API GooglePlusAPI YoutubeAPI GoogleMapsAPI FlickrAPI Last.fmAPI TwitterRESTAPI DataInterchnage XML JSON Ajax Exercises HTMLCSSExercises JavaScriptExercises jQueryExercises jQuery-UIExercises CoffeeScriptExercises PHPExercises PythonExercises CProgrammingExercises C#SharpExercises JavaExercises SQLExercises OracleExercises MySQLExercises SQLiteExercises PostgreSQLExercises MongoDBExercises TwitterBootstrapExamples Others ExcelTutorials Usefultools GoogleDocsFormsTemplates GoogleDocsSlidePresentations NumberConversions LinuxTutorials Quizzes Articles C#SharpExercises:Addmillisecondtoagivendate LastupdateonDecember17202106:55:23(UTC/GMT+8hours) C#SharpDateTime:Exercise-12withSolution WriteC#SharpProgramtoaddonemillisecondand2.5millisecondstoagivendatevalueanddisplayeachnewvalueandthedifferencebetweenitandtheoriginalvalue. Note:Thedifferenceisdisplayedbothasatimespanandasanumberofticksandonemillisecondequals10,000ticks. SampleSolution:- C#SharpCode: usingSystem; publicclassExample12 { publicstaticvoidMain() { stringdateFormat="MM/dd/yyyyhh:mm:ss.fffffff"; DateTimedate1=newDateTime(2016,8,16,16,0,0); Console.WriteLine("Originaldate:{0}({1:N0}ticks)\n", date1.ToString(dateFormat),date1.Ticks); DateTimedate2=date1.AddMilliseconds(1); Console.WriteLine("Seconddate:{0}({1:N0}ticks)", date2.ToString(dateFormat),date2.Ticks); Console.WriteLine("Differencebetweendates:{0}({1:N0}ticks)\n", date2-date1,date2.Ticks-date1.Ticks); DateTimedate3=date1.AddMilliseconds(2.5); Console.WriteLine("Thirddate:{0}({1:N0}ticks)", date3.ToString(dateFormat),date3.Ticks); Console.WriteLine("Differencebetweendates:{0}({1:N0}ticks)", date3-date1,date3.Ticks-date1.Ticks); } } SampleOutput: Originaldate:08/16/201604:00:00.0000000(636,069,600,000,000,000ticks) Seconddate:08/16/201604:00:00.0010000(636,069,600,000,010,000ticks) Differencebetweendates:00:00:00.0010000(10,000ticks) Thirddate:08/16/201604:00:00.0030000(636,069,600,000,030,000ticks) Differencebetweendates:00:00:00.0030000(30,000ticks) Flowchart: C#SharpCodeEditor: ImprovethissamplesolutionandpostyourcodethroughDisqus Previous:WriteC#Sharpprogramtoaddanumberofwholeandfractionalvaluestoadateandtime. Next:WriteC#SharpProgramtoadd30secondsandthenumberofsecondsinonedaytoaDateTimevalue. Whatisthedifficultylevelofthisexercise? Easy Medium Hard TestyourProgrammingskillswithw3resource'squiz.  SharethisTutorial/Exerciseon:Facebook andTwitter NewContentpublishedonw3resource: HTML-CSSPractical:Exercises,Practice,Solution JavaRegularExpression:Exercises,Practice,Solution ScalaProgrammingExercises,Practice,Solution PythonItertoolsexercises PythonNumpyexercises PythonGeoPyPackageexercises PythonPandasexercises Pythonnltkexercises PythonBeautifulSoupexercises FormTemplate Composer-PHPPackageManager PHPUnit-PHPTesting Laravel-PHPFramework Angular-JavaScriptFramework Vue-JavaScriptFramework Jest-JavaScriptTestingFramework



請為這篇文章評分?