More actions
imported>hs4393 No edit summary |
imported>jjae0214 No edit summary |
||
| Line 31: | Line 31: | ||
printf("Team Name : 반밴뱐밴반\nTeam member: 추성준 임동규 이정재\n###########################################\n"); | printf("Team Name : 반밴뱐밴반\nTeam member: 추성준 임동규 이정재\n###########################################\n"); | ||
} | |||
phase3 | |||
#include <stdio.h> | |||
int main() | |||
{ | |||
int i,amount=0; | |||
for(i=1;i<=100;i++) | |||
{ | |||
amount+=i; | |||
} | |||
printf("1~100의 합: %d\n", amount); | |||
return 0; | |||
} | } | ||
'''problem2''' | '''problem2''' | ||
Revision as of 10:14, 15 May 2015
튜터: 추성준 튜티: 임동규 이정재
- 코드짜
- 버그잡아
- 올려
problem1
phase1
#include<stdio.h>
#include<math.h>
int main()
{
printf("hello world\n");
return 0;
}
phase2
#include <stdio.h>
int main()
{
printf(":+.+ *+*=..\n");
printf(": :# .=++:=+\n");
printf("+= ==. .::\n");
printf("Team Name : 반밴뱐밴반\nTeam member: 추성준 임동규 이정재\n###########################################\n");
}
phase3
#include <stdio.h>
int main()
{
int i,amount=0;
for(i=1;i<=100;i++)
{
amount+=i;
}
printf("1~100의 합: %d\n", amount);
return 0;
}
problem2 phase1
problem3 phase1
problem4 phase1
problem5