import java.util.Scanner;public class testcoding {public static void main(String[] args) {int com=(int)(Math.random()*3);// 난수// Math.random() : 추출한 숫자 자체가 double형 (0.0~0.99)/* * (int)(Math.random()*3); * 31 2 * 2 0.9*3 => 2.7 */System.out.print("0,1,2 정수중 하나 입력 : ");Scanner scan = new Scanner(System.in);int user = scan.nextInt(); // 입력한 정수값 받아옴int result = com-user;/*if(com == 0){System.out.pri..
import java.util.Scanner;public class testcoding {public static void main(String[] args) {/* * 1~100사이의 수를 난수 발생 * 루프 시작 * 입력함 * 입력값과 난수값 비교 * 종료 여부 확인 * 루프 종료 */int s=0, count=0;int com=(int)(Math.random()*100)+1;Scanner scan=new Scanner(System.in);for(;;){System.out.print("1~100사이의 정수 입력 : ");int user=scan.nextInt();if(user 100){System.out.println("잘못된 입력값입니다.");continue;}/* * for : continue =..
import java.util.Scanner; public class testcoding { public static void main(String[] args) {Scanner scan = new Scanner(System.in);System.out.print("첫번째 정수 입력 :");int a=scan.nextInt();System.out.print("두번째 정수 입력 :");int b=scan.nextInt();//System.out.println("a="+a);//System.out.println("b="+b);System.out.printf("%d+%d=%d\n",a,b,a+b);System.out.printf("%d-%d=%d\n",a,b,a-b);System.out.printf("%d*%d..
#include struct student { int id; int score; }; void main() { struct student x[] = {{1,77}, {2,44}, {3,99}, {4,66}, {5,55}}; int i=0; int maxindex = 0; for(i=1; i< 5; i++) { if(x[maxindex].score < x[i].score) { maxindex = i; } } printf("가장 우수한 학생의 학번은 %d, 점수는 %d 입니다.\n",x[maxindex].id,x[maxindex].score); }
- Total
- Today
- Yesterday
- 포세리앙 시밤...
- C Programming
- Talesweaver_Palshu
- 이건사야되!
- oracle
- 무사헌터G
- DnF_카인
- spring
- Unleashed
- GOD EATER2
- XML
- League of legends
- HTML
- jdbc
- PSP
- java
- jsp
- PS VITA
- Android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |