CJCoding With Joseph
← Back to Question List
C# Code Walkthrough #44

Integer vs Floating Division

easyCasting

📄 Code

Read carefully — what does this print?
1Console.WriteLine(5 / 2);
2Console.WriteLine(5.0 / 2);
3Console.WriteLine(5 / 2.0);

🎯 Your Answer