5 주차 탑승 작업
package set;
import java.util.Scanner;
public class SKS {
public static void main(String[] args) {
// TODO Auto-generated method stub
int a=100,b,c,d;
while(a<1000){
b=a%10;
c=a%100/10;
d=a/100;
if(b*b*b+c*c*c+d*d*d==a) {
System.out.println(a);
}
a++;
}
}
}
package set;
import java.util.Scanner;
public class SKSK {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input=new Scanner(System.in);
int m =0;
int y =0;
int s =0;
int a ;
int d =0;
System.out.println(" ");
y=input.nextInt();
System.out.println(" ");
m=input.nextInt();
System.out.println(" ");
d=input.nextInt();
switch(m) {
case 1 :
s=0;break;
case 2:
s=31;break;
case 3 :
s=59;break;
case 4 :
s=90;break;
case 5 :
s=120;break;
case 6 :
s=151;break;
case 7 :
s=181;break;
case 8 :
s=212;break;
case 9 :
s=243;break;
case 10 :
s=273;break;
case 11 :
s=304;break;
case 12 :
s=334;break;
default:
System.out.println(" , , !"); break;}
s=s+m;
if(m>=0&&m<=12&&d>=1&&d<=31) {
if(y%400==0||y%4==0&&y%100!=0) {
a=1;
}else {
a=0;
}
if(a==1&&m>2) {
s++;
System.out.println(y+" "+m+" "+d+" "+s+" ");
}
else { System.out.println(y+" "+m+" "+d+" "+s+" ");
}
}
}
}
package set;
import java.util.Scanner;
public class SKSK {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input=new Scanner(System.in);
for(int a = 1;a <= 6;a++)
{
for(int b = 1;b <= a;b++)
System.out.printf("%d ",b);
System.out.print("
");
}
System.out.print("
");
for(int a = 6;a >= 1;a--)
{
for(int b = 1;b <= b;b++)
System.out.printf("%d ",b);
System.out.print("
");
}
System.out.print("
");
for(int a = 1;a <= 6;a++)
{
for(int b = 1;b <= 2 * (6 - a);b++)
System.out.print(" ");
for(int b = a;b >= 1;b--)
System.out.printf("%d ",b);
System.out.print("
");
}
System.out.print("
");
for(int a = 6;a >= 1;a--)
{
for(int b = 1;b <= 2 *(6-a);b++)
System.out.print(" ");
for(int b = 1;b <= a;b++)
System.out.printf("%d ",b);
System.out.print("
");
}
}
package set;
import java.util.Scanner;
public class SKSK {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input=new Scanner(System.in);
System.out.println(" ");
int a =input.nextInt();
int b;
if(a>999&&a<=9999) {
b=a/1000+a/100%10*10+a/10%10*100+a%10*1000;
System.out.println(b);
}else {
System.out.println(" ");
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.