{{|
1 2 5 6 8 10
|}}
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");
}










