#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("4");
printf("6");
printf("♥");
printf("17");
printf("♥");
printf("2");
printf("♥");
printf("35");
return 0;
}
전체 >> 1007번 도와주세요 (C언어) |
김세찬 @ 2024-04-17 19:46:40
[ 삭제 ]
#1
#include <stdio.h>
#include <stdlib.h> int main() { printf("4"); printf("6"); printf("♥"); printf("17"); printf("♥"); printf("2"); printf("♥"); printf("35"); return 0; } |
최보람 @ 2024-04-18 19:35:27
[ 삭제 ]
#2
숫자를 입력 받으라는 뜻입니다;; 첫번째 입력값은 숫자를 입력할 갯수 두번째 부터는 입력할 갯수만큼 숫자 입력
그리고 그 사이사이 하트를 넣으라는 듯이구욤 |
김세찬 @ 2024-04-20 12:57:43
[ 삭제 ]
#3
네 감사합니다.
|