方法の3つの練習問題
8232 ワード
一.
タイトルの要件:
2つの数字が同じかどうかを判断する方法を定義します.public class Method01Same {
public static void main(String[] args) {
System.out.println(isSame(2,2));
System.out.println("---------------");
System.out.println(isSame(1,2));
}
/*
:
:boolean
:isSame
:int a, int b
*/
public static boolean isSame(int a , int b){
/*
boolean same; ---
if(a == b){
same = true;
}else {
same = false;
}
return same;
*/
/*
boolean same = a == b? true : false; ---
return same;
*/
/*
boolean same = a == b; ----
return same;
*/
return a == b; //-------
}
}
二.
テーマの要求:1-100の間のすべての数字の和を求める方法を定義します.public class Method02Sum {
public static void main(String[] args) {
System.out.println(" " + getSum());
}
/*
: , int
:getSum
: , , ,
*/
public static int getSum(){
int sum = 0;
for (int i = 1; i <= 100; i++) {
sum += i;
}
return sum;
}
}
三.
タイトル要求:指定回数のHelloWorldを印刷する方法を定義します.public class Method03Print {
public static void main(String[] args) {
printCount(100);
}
/*
: , ,
:printCount
: ? , 。 ,int num;
*/
public static void printCount(int num){
for (int i = 0; i <= num; i++) {
System.out.println("Hello,World!!!" + i );
}
}
}
public class Method01Same {
public static void main(String[] args) {
System.out.println(isSame(2,2));
System.out.println("---------------");
System.out.println(isSame(1,2));
}
/*
:
:boolean
:isSame
:int a, int b
*/
public static boolean isSame(int a , int b){
/*
boolean same; ---
if(a == b){
same = true;
}else {
same = false;
}
return same;
*/
/*
boolean same = a == b? true : false; ---
return same;
*/
/*
boolean same = a == b; ----
return same;
*/
return a == b; //-------
}
}
テーマの要求:1-100の間のすべての数字の和を求める方法を定義します.
public class Method02Sum {
public static void main(String[] args) {
System.out.println(" " + getSum());
}
/*
: , int
:getSum
: , , ,
*/
public static int getSum(){
int sum = 0;
for (int i = 1; i <= 100; i++) {
sum += i;
}
return sum;
}
}
三.
タイトル要求:指定回数のHelloWorldを印刷する方法を定義します.public class Method03Print {
public static void main(String[] args) {
printCount(100);
}
/*
: , ,
:printCount
: ? , 。 ,int num;
*/
public static void printCount(int num){
for (int i = 0; i <= num; i++) {
System.out.println("Hello,World!!!" + i );
}
}
}
public class Method03Print {
public static void main(String[] args) {
printCount(100);
}
/*
: , ,
:printCount
: ? , 。 ,int num;
*/
public static void printCount(int num){
for (int i = 0; i <= num; i++) {
System.out.println("Hello,World!!!" + i );
}
}
}