스키마에듀_ 0114 수업준비
2023. 1. 13. 12:19ㆍBOJ
728x90
https://www.acmicpc.net/problem/14681
#include <stdio.h>
int main(void){
int x=0;
int y=0;
int quad = 1;
scanf("%d", &x);
scanf("%d", &y);
if(x>0 && y>0){
quad =1;
}else if(x<0 && y>0){
quad = 2;
}else if(x<0 && y<0){
quad = 3;
}else if(x>0 && y<0){
quad = 4;
}
printf("%d",quad);
return 0;
}
https://www.acmicpc.net/problem/11654
#include <stdio.h>
int main(void){
char alpha;
scanf("%c",&alpha);
printf("%d",alpha);
}
https://www.acmicpc.net/problem/7568
#include <stdio.h>
typedef struct{
int height;
int weight;
int rank;
}student;
int main(void){
student list[50];
int n=0; //입력할 사람 수
int i=0, j=0; //for문에 쓰일 변수
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d %d",&list[i].weight, &list[i].height);
list[i].rank=1; //1 + 나보다 덩치 큰 사람 수 = 등수
}
//나보다 덩치 큰 사람 수 찾는 작업
for(i=0;i<n;i++){
for(j=0;j<n;j++){
if(list[i].height<list[j].height && list[i].weight<list[j].weight){
list[i].rank = list[i].rank +1; //나보다 덩치 큰 사람 발견. 등수 하나 밀려남
}
}
}
for(i=0;i<n;i++){
printf("%d ",list[i].rank);
}
return 0;
}
'BOJ' 카테고리의 다른 글
백준 c언어문제 (0) | 2023.02.21 |
---|---|
스키마에듀 0218 수업준비_별찍기특집 (0) | 2023.02.16 |
프로그래머스 lv.1 숫자 문자열과 영단어 (python) (0) | 2023.01.20 |
[프로그래머스 lv.1] 과일장수_python (2) | 2022.11.14 |
백준 문제 카테고리 (0) | 2022.07.21 |