Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created March 1, 2021 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alkimisti/41d567fc19bd2e7fe209ea57f0823213 to your computer and use it in GitHub Desktop.
Save Alkimisti/41d567fc19bd2e7fe209ea57f0823213 to your computer and use it in GitHub Desktop.
public class CharToInt {
public static void main(String[] args) {
char karakteri1 = 'a';
int kodi1 = karakteri1;
System.out.println(kodi1);
char karakteri2 = 'A';
int kodi2 = karakteri2;
System.out.println(kodi2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment