5932700/please turn on two factor authentication#117
Merged
usernamealreadyis merged 10 commits intousernamealreadyixxfrom Oct 29, 2017
Merged
Conversation
Integer Arithmetic
1.
6 * ((-2 + 3) * (2 - 1))
=> 6 * (-1 * (2 - 1))
=> 6 * (-1 * 1) => 6 * -1 => -6
The application that computes this answer would appear as follows:
public class Test
{ public static void main(String[] args)
{ System.out.println(6 * ((-2 + 3) * (2 - 1))); }
}
2.
6 * (-2 + 3) * (2 - 1)
=> 6 * -1 * (2 - 1)
=> -6 * (2 - 1) => -6 * 1 => -6
3.
6 * -2 + 3 * (2 - 1)
=> -12 + 3 * (2 - 1)
=> -12 + 3 * 1 => -12 + 3 => -9
4.
6 * -2 + 3 * 2 - 1
=> -12 + 3 * 2 - 1
=> -12 + 6 - 1 => -6 - 1 => -7
…r-authentication 59327001/please turn on two factor authentication
…or-authentication 5932700/please turn on two factor authentication
Usernamealreadyis cs1
Apps on GitHub extend and improve existing workflows. People can purchase apps from GitHub Marketplace or browse useful tools and services that integrate with GitHub in Works with GitHub. If you're building or adding integrations, this documentation will help get you up and running. For support requests, bug reports, and discussions related to GitHub Apps (not OAuth Apps), use the GitHub Platform Forum. The forum allows you to collaborate with other integrators as well as engineers and product managers from GitHub. If your request is about OAuth Apps, or if you need to discuss a private concern, please contact support directly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.