CJ
Coding With Joseph
search
← Back to Question List
C# Code Walkthrough #1
Integer Division Truncates
easy
Operators
📄 Code
Read carefully — what does this print?
1
int
x
=
7
/
2
;
2
Console
.
WriteLine
(
x
)
;
🎯 Your Answer
What will this code output?
Submit Answer
← Previous
Next →