태그 : C言語 요약보기전체보기목록닫기
- プログラミング演習 課題4 問題3 分数の演算(0)2009.07.28
- プログラミング演習 課題4 問題4 文字列 検索 문자열 검색(0)2009.07.28
- プログラミング演習 課題4 問題3 分数の演算 분수의 연산(2)2009.07.28
- プログラム演習 課題4 問題2 最大公約数 最小公倍数(0)2009.07.22
- プログラミング演習1 課題4 問題1 行列の積(1)2009.07.13
- 프로그래밍 연습1 과제3 문제2 1차원 배열을 이용한 달력 만들기(0)2009.06.30
- プログラミング演習1課題3問題2 カレンダー(0)2009.06.30
- プログラミング演習1 課題3 問題5(0)2009.06.29
- プログラミング演習1 課題3 問題4 1000円を500、100、50、10円で両替(0)2009.06.29
1
- 과제空間
- 2009/07/28 14:09
#include <stdio.h>#include <conio.h>int a=0, b=0, c=0, d=0;int C=0, C1=0, C2=0, C3=0, C4=0, M=0;int e=0;int gcd(int, int, int);int lcm=0;int main(){ printf("input the first number\n...
- 과제空間
- 2009/07/28 11:58
#include <stdio.h>#include <string.h>int main(){ int i=0; char str1[1000]; /* 文字列 */ char str2[1000]; ...
- 과제空間
- 2009/07/28 02:25
#include <stdio.h>#include <conio.h>int a=0, b=0, c=0, d=0;int e=0;int main(){ printf("input the first number\n"); scanf("%d" "%d", &a, &b); printf("first number i...
- 과제空間
- 2009/07/22 12:45
#include <stdio.h>int gcd(int, int);int a=0, b=0, c=0, d=0;int lcm;int main(){printf("値2つを入力せよ。\n");scanf("%d" "%d", &c, &d);a=c;b=d;lcm=a*b/gcd(a, b);printf("最大公約数は%d, 最小公倍数は%d\n", gc...
- 과제空間
- 2009/07/13 14:20
#include <stdio.h>int main(){int k=0, m=0, n=0, i=0, j=0, h=0;printf("行列Aの行と列の数を入力せよ\n");scanf("%d" "%d", &k, &m);printf("行列Aの各成分を入力せよ\n");int A[k][m];for(i=0; i<k; i++){  ...
- 과제空間
- 2009/06/30 21:26
이글루스 지식인분들의 도움으로 드디어 완성했습니다!! ㅠㅠ이제 내일 주석 달고 레포트로 만들기만 하면 되는군...!!!#include <stdio.h>#include <conio.h>int leapyear(int);int zeller(int, int, int);int mday[12]={31, 28, 31, 30, 31, 30, 31...
- 과제空間
- 2009/06/30 15:52
#include <stdio.h>int leapyear(int);int zeller(int, int, int);int mday[12]={31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};char *week[6][7]={"sun", "mon", "tue", "wed", "thu", "fri", "sat"};i...
- 과제空間
- 2009/06/29 15:06
#include <stdio.h>int a=0, b=0, c=0, d=0, e=0, f=0, n;int count=0;int main(){printf("\n");scanf("%d", &n);for(a=n/10000; a>=0; a--){if(a*10000==n){count++;printf("%d10000%d\n", n, a);}e...
- 과제空間
- 2009/06/29 13:55
#include <stdio.h>int main(){int a=0, b=0, c=0, d=0, count=0;printf("1000円紙幣を、10円、50円、100円、500円硬貨で両替するとき、替えられる可能性を示す\n");for(a=2; a>=0; a--){if(a*500==1000){count++;printf("500円%d個\n", a);}...
1
최근 덧글