<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>컴퓨터프로그래밍 수업 by 김은규</title>
      <link>https://padlet.com/eun91485/evcox393nxw66eyz</link>
      <description>컴퓨터프로그래밍 수업 자료를 다양하게 공유해봐요~~</description>
      <language>en-us</language>
      <pubDate>2023-06-13 20:31:24 UTC</pubDate>
      <lastBuildDate>2023-06-13 21:06:10 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>1. printf 함수</title>
         <author>eun91485</author>
         <link>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622624941</link>
         <description><![CDATA[<div>https://blockdmask.tistory.com/472</div>]]></description>
         <enclosure url="https://www.youtube.com/watch?v=TsOL7jhXaaU" />
         <pubDate>2023-06-13 20:39:58 UTC</pubDate>
         <guid>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622624941</guid>
      </item>
      <item>
         <title>홍길동(작품명: 입력한 것을 출력하자~)</title>
         <author>eun91485</author>
         <link>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622626442</link>
         <description><![CDATA[<div>작품명: 입력한 것을 출력하자~<br>작성자: 홍길동<br><br>int main(int argc, char *argv[]) {<br>	int a, b;<br>	scanf("%d", &amp;a);<br>	scanf("%d", &amp;b);<br>	printf("a+b=%d", a+b);<br>	return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-13 20:42:31 UTC</pubDate>
         <guid>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622626442</guid>
      </item>
      <item>
         <title>김첨지(더하기 프로그램)</title>
         <author>eun91485</author>
         <link>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622626958</link>
         <description><![CDATA[<div>작품명: 더하기 프로그램<br>작성자: 김첨지<br><br>int main(int argc, char *argv[]) {<br>	int a, b;<br>	printf("첫번째 10진 정수를 입력하시오\n");<br>	scanf("%d", &amp;a);<br>	printf("두번째 10진 정수를 입력하시오\n");<br>	scanf("%d", &amp;b);<br>	printf("a+b=%d", a+b);<br>	return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-13 20:43:12 UTC</pubDate>
         <guid>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622626958</guid>
      </item>
      <item>
         <title>2. scanf 함수</title>
         <author>eun91485</author>
         <link>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622629219</link>
         <description><![CDATA[<div>https://blockdmask.tistory.com/471</div>]]></description>
         <enclosure url="https://www.youtube.com/watch?v=yJEf0dimmrg" />
         <pubDate>2023-06-13 20:47:55 UTC</pubDate>
         <guid>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622629219</guid>
      </item>
      <item>
         <title>작품 제작 1탄</title>
         <author>eun91485</author>
         <link>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622629457</link>
         <description><![CDATA[<div><br>유튜브 영상과 사이트를 참고하여 함수(scanf, printf)사용방법을 익히고<br>해당 함수를 활용하여 다양한 작품을 만들어 패들렛에 올려보세요</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-13 20:48:27 UTC</pubDate>
         <guid>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622629457</guid>
      </item>
      <item>
         <title>김동후(8진 정수 계산기)</title>
         <author>eun91485</author>
         <link>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622629975</link>
         <description><![CDATA[<div>작품명 : 8진 정수 계산기<br>작성자: 김동후<br><br>int main(int argc, char *argv[]) {<br>	int a,b;<br>	printf("8진 정수를 입력하시오\n");<br>	scanf("%o", &amp;a);<br>	printf("8진 정수를 입력하시오\n");<br>	scanf("%o", &amp;b);<br>	printf("변수 a값(8진수): %o\n", a);<br>	printf("변수 a값(10진수): %d\n", a);<br>	printf("변수 b값(8진수): %o\n", b);<br>	printf("변수 b값(10진수): %d\n", b);<br>	printf("a+b=(8진): %o\n", a+b);<br>	printf("a+b=(10진): %d\n", a+b);<br>	return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-13 20:49:39 UTC</pubDate>
         <guid>https://padlet.com/eun91485/evcox393nxw66eyz/wish/2622629975</guid>
      </item>
   </channel>
</rss>
