Skip to content

Instantly share code, notes, and snippets.

@mokomokohituji
Created June 28, 2021 16:01
Show Gist options
  • Save mokomokohituji/42e96fb372d52083164430ceb1558d62 to your computer and use it in GitHub Desktop.
Save mokomokohituji/42e96fb372d52083164430ceb1558d62 to your computer and use it in GitHub Desktop.
int型からdouble型に変換されない
public class Main {
public static void main(String[] args) {
int a = 13;
a /= 5;
//出力結果は2
System.out.println(a);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment