본문 바로가기

전체 글98

Still Don’t Believe In Influencer Marketing? Amazon Just Showed Us The Future https://medium.com/@nicolascole77/still-dont-believe-in-influencer-marketing-amazon-just-showed-us-the-future-c15f340068c3 Still Don’t Believe In Influencer Marketing? Amazon Just Showed Us The Future Many people don’t know that behind Amazon’s brilliant marketplace is an army of affiliate links from websites all over the world. medium.com If you don’t know what an affiliate link is, it’s a link.. 2019. 11. 25.
Why Great Art Requires True Grit https://modus.medium.com/why-great-art-requires-true-grit-d7f34fa2fc41 Why Great Art Requires True Grit Excellent creative work doesn’t happen; it’s the result of endless iteration and tweaking modus.medium.com When average artists are ready to stop, the experts are just getting started. Truthfully, it’s not creative genius so much as it is creative grit. What else could you call that level of d.. 2019. 11. 25.
[Android] 안드로이드 : 버튼 클릭 시 웹사이트로 이동하기 1. activity_main.xml 버튼 > onClick : onButton2Clicked 2. MainActivity.java public void onButton2Clicked(View v) { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.naver.com")); startActivity(intent); } 3. 결과 버튼 클릭 시 네이버로 이동 2019. 11. 25.
[Android] 안드로이드 : 버튼 클릭 시 토스트 메시지 띄우기 1. activity_main.xml 버튼 > onClick : onButton1Clicked 2. MainActivity.java public void onButton1Clicked(View v) { Toast.makeText(getApplicationContext(), "버튼이 눌렸어요", Toast.LENGTH_LONG).show(); } 3. 결과 버튼 클릭 시 하단 토스트 문구 2019. 11. 25.
[JAVA] BOJ_2739 구구단 성공 시간 제한메모리 제한제출정답맞은 사람정답 비율 1 초 128 MB 78606 41611 37350 55.123% 문제 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. 입력 첫째 줄에 N이 주어진다. N은 1보다 크거나 같고, 9보다 작거나 같다. 출력 출력형식과 같게 N*1부터 N*9까지 출력한다. 예제 입력 1 복사 2 예제 출력 1 복사 2 * 1 = 2 2 * 2 = 4 2 * 3 = 6 2 * 4 = 8 2 * 5 = 10 2 * 6 = 12 2 * 7 = 14 2 * 8 = 16 2 * 9 = 18 import java.util.*; public class BOJ_2739 { public static void main(String.. 2019. 11. 22.