#include<stdio.h>
int main(void){
int a=0 , b=1;
scanf("%d",&a);
while(b<=a){
printf("%d",b++);
}
}
정답은 틀렸다고 나옵니다...
CODE 127
#include<stdio.h>
int main(void){
int score, sum, b;
score=sum=b=0;
do{
scanf("%d",&score);
if(score>=0 && score<=100)
{
sum+=score;
b++;
}
else
{
break;
}
}while(score<101);
printf("sum : %d\navg : %.1f",sum,(float)sum/b);
return 0;
}
CODE 128
#include<stdio.h>
int main(void){
int a,b;
a=1; b=0;
do{
scanf("%d",&a);
if((a%3)!=0 && (a%5)!=0) // AND연산자 말고 OR연산자로 해도 상관 없을것 같다.
{
b++;
}
}while(a!=0);
printf("%d",b);
}
CODE 129
#include "stdio.h"
int main(void)
{
int base,height,width;
char c='y';
base = height = width = 0;
do{
printf("Base = ");
scanf("%d",&base);
printf("Height = ");
scanf("%d",&height);
printf("Triangle width = %.1f\n",(float)base*height/2);
printf("Continue? ");
scanf(" %c",&c);
}while(c=='y'|| c=='Y');
return 0;
}
'프로그래밍 > C_정보올림피아드 Language_Coder' 카테고리의 다른 글
CODE 130~138 반복제어문2 - 형성평가1~A (0) | 2020.09.05 |
---|---|
CODE 541~548 : 반복제어문2 - 자가진단1~8 (0) | 2020.09.04 |
CODE 633 반복제어문 1 자가진단6 (0) | 2020.09.02 |
CODE 538 반복제어문 1 자가진단 3~4 (0) | 2020.09.01 |
CODE 120~124 선택제어문 - 형성평가 1~5 (0) | 2020.08.31 |