{{|
1 2 5 6 8 10
|}}
~cpp
#include <stdio.h>
int main(){
int i;
for(i=1;i<=10;i++)
{
if (i==3 || i==4 || i==7 || i==9)
continue;
printf("%d ",i);
}
system("pause");
}
1 - 10 합
~cpp
#include <stdio.h>
int main(){
int i;
int plus=0;
for(i=0;i<=10; i++)
{
plus+=i;
}
printf("%d",plus);
system("pause");
}
숫자 입력받음. 입력값이 1이면 64출력, 2이면 10출력, 3이면 23출력, 그 이외의 값이면 "error" 출력
~cpp
#include <stdio.h>
int main(){
int i;
printf("숫자를 입력하세요"); scanf("%d" ,&i);
if (i==1)
printf ("64");
if (i==2)
printf ("10");
if (i==3)
printf ("23");
if (i>3)
printf ("error");
system("pause");
}
배열 작성
~cpp
#include <stdio.h>
int main(){
int a [10];
int c;
for (c=0; c<=9; c++)
{
a[c] = 10-c;
printf("%d ",a[c]);
}
system("pause");
}