This file contains 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
import java.util.Random; | |
public class HomeWork { | |
public static void main(String[] args) { | |
long[] numbers = new long[10]; | |
for (int i = 0; i < numbers.length; i++) { | |
numbers[i] = new Random().nextInt(101); | |
} |
This file contains 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
public class HomeWork { | |
public static void main(String[] args) { | |
boolean weather = true; | |
double temperature = 35.5; | |
if (weather == true && temperature >= 30.0) { | |
System.out.println("今日は暑いですね"); | |
} else { | |
System.out.println("今日は涼しいですね"); | |
} |
This file contains 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
public class HomeWork { | |
public static void main(String[] args) { | |
String[] names = new String[] { "長男", "次男", "三男" }; | |
for (String name : names) { | |
System.out.println("僕は" + name + "です"); | |
} | |
} | |
} |
This file contains 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
public class HomeWork { | |
public static void main(String[] args) { | |
int[] numbers = new int[100]; | |
for (int i = 0; i < numbers.length; i++) { | |
numbers[i] = i; | |
} | |
} | |
} |
This file contains 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
public class HomeWork { | |
public static void main(String[] args) { | |
int random = new Random().nextInt(3); | |
int input = new Scanner(System.in).nextInt(); | |
if (random == input) { | |
// 同じならあいこ | |
System.out.println("あいこです。"); | |
} else { | |
if (input == 0) { | |
// もし自分がパーだったら |
This file contains 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
import java.util.Arrays; | |
public class HomeWork { | |
public static void main(String[] args) { | |
int[] numbers = {43, 23, 45, 11, 10982}; | |
int index = 0; | |
//検索する前に必ずソート(昇順で並び替え)しておく必要がある。 |
This file contains 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
public class Homework { | |
public static void main(String[] args) { | |
int[] array = new int[30]; | |
for (int i = 0; i < 30; i++) { | |
array[i] = i + 1; | |
} | |
int total = 0; | |
for (int i = 0; i < array.length; i++) { | |
total += array[i]; | |
} |
This file contains 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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical" | |
tools:context=".MainActivity" > | |
<Button | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" |
This file contains 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
try { | |
//②feedjsonを読み込む | |
InputStream in = getAssets().open("feed.json"); | |
BufferedReader buff = | |
new BufferedReader(new InputStreamReader(in)); | |
StringBuilder bld = new StringBuilder(); | |
String line = null; | |
while((line = buff.readLine()) != null){ | |
bld.append(line); |
This file contains 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
package com.example.study0930; | |
import android.app.Activity; | |
import android.app.ProgressDialog; | |
import android.os.Bundle; | |
import android.os.Handler; | |
import android.util.Log; | |
import android.view.Menu; | |
import android.view.View; | |
import android.view.View.OnClickListener; |