/*
#include <stdio.h>
int main()
{
printf("!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("special characters\n[\\n,\\\",\\\\] is very important.");
return 0;
}
#include <stdio.h>
int main()
{
printf(" ");
return 0;
}
자료형
선언 입출력
정수 int %d
실수 float %f
문자 char %c
정수형(int)으로 변수를 선언하고,
int a;
변수에 정수값을 저장한 후
scanf("%d",&a); //정수를 하나 받아서 a에 배달해주세요
변수에 저장되어 있는 값을 그대로 출력해보자.
printf("%d",a);
문자형(char)으로 변수를 하나 선언하고,
char a;
변수에 문자를 저장한 후
scanf("%c",&a);
변수에 저장되어 있는 문자를 그대로 출력해보자.
printf("%c",a);
*/
/*
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char b;
scanf("%c",&b);
printf("%c",b);
return 0;
}
*/
#include <stdio.h>
int main()
{
float kk;
scanf("%f",&kk);
printf("%f",kk);
return 0;
}