J

@jhaeing

3-8실습1~4

C
59 minutes ago
#include <stdio.h> int main() { //실습1// /* int n; scanf("%d",&n); if(n>=10) printf("성공");*/

3-7 활동3-3

C
1 hour ago
#include <stdio.h> int main() { float r; scanf("%f",&r); printf("%.1f",r*r*3.14); return 0; }

3-7 활동3-3

C
1 hour ago
#include <stdio.h> int main() { float r; scanf("%f",&r); printf("%.1f",r*r*3.14); return 0; }

3-7 실습 3-2

C
3 days ago
#include <stdio.h> int main() { int a,b; float a,b; scant("%f",a*b/2); scant("%f",a*b/2);

3-7 실습 3-2

C
3 days ago
#include <stdio.h> int main() { int a,b; scanf("%d",&a); scanf("%d",&b); printf("%d+%d=%d\n",a,b,a+b); printf("%d+%d=%d\n",a,b,a-b);

3-7 실습 5-8

C
3 days ago
#include <stdio.h> int main() { //실습5// /* int n; scanf("%d",&n); printf("입력받은 값=%d\n",n);*/ //실습6// /* int a,b;

3-7 값의 입력과 저장, 연산과 출력은 어떻게 프로그래밍할까(실습1~4)

C
3 days ago
#include <stdio.h> int main() { //실습1// /* printf("5*3/2\n"); printf("7*7*3.14\n"); printf("4.5*4.5*4.5\n"); */ //실습3// /*printf("%d\n",5+3);

3-7 값의 입력과 저장, 연산과 출력은 어떻게 프로그래밍할까(실습1~4)

C
1 week ago
#include <stdio.h> int main() { //실습1// /* printf("5*3/2\n"); printf("7*7*3.14\n"); printf("4.5*4.5*4.5\n"); */ //실습3// /*printf("%d\n",5+3);

3-07 값의 입력과 저장,연산과 출력은 어떻게 프로그래밍 할까(실습1~3)

C
4 weeks ago
#include <stdio.h> int main() { printf("%d\n", 5+3); printf("%d\n", 7*2-4); printf("%d\n", 15/2); return 0 ; }

3-07 값의 입력과 저장,연산과 출력은 어떻게 프로그래밍 할까(실습)

C
4 weeks ago
#include <stdio.h> int main() { printf("%d\n", 5+3); printf("%d\n", 7*2-4); printf("%d\n", 15/2); return 0 ; }

3-06프로그램은 어떻게 작성할까(활동1-2)

C
1 month ago
#include <stdio.h> int main() { printf("C언어는 컴퓨터 프로그램을 기술 \n"); printf("C언어는 컴퓨터 프로그램을 기술 \n"); return 0 ; }