Skip to content

Instantly share code, notes, and snippets.

View godtaehee's full-sized avatar
🦜
I'm developer

Taehee Evan Kim godtaehee

🦜
I'm developer
View GitHub Profile
#include <stdio.h>
int main(){
int a, b, c;
scanf("%d %d", &a, &b);
c = a+b;
#include <stdio.h>
int main(){
int a,b,c;
scanf("%d %d", &a, &b);
c = a-b;
#include <stdio.h>
void print(int y){
switch(y % 7){
case 0:
printf("SUN");
break;
case 1:
printf("MON");
@godtaehee
godtaehee / #2558
Created January 11, 2019 16:33
C++
#include <iostream>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
@godtaehee
godtaehee / #10950
Created January 11, 2019 16:34
C++
#include <iostream>
using namespace std;
int main(){
int T;
int a,b;
cin >> T;
while(T--){
cin >> a >> b;
#include <stdio.h>
int main(){
int N;
int x, y;
int min = 1000;
int correct = 0;
scanf("%d", &N);
@godtaehee
godtaehee / #10817
Created January 17, 2019 01:50
C++
#include <iostream>
using namespace std;
int main(){
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int a[3];
@godtaehee
godtaehee / #10871
Created January 17, 2019 02:06
C++
#include <iostream>
using namespace std;
int main(){
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int N;
@godtaehee
godtaehee / #1546
Created January 17, 2019 02:27
C++
#include <iostream>
using namespace std;
int main(){
cin.tie(NULL);
ios_base::sync_with_stdio(false);
double max, sum =0;
#include <stdio.h>
int main(){
int T, N, avg;
int sum = 0;
scanf("%d", &T);
while(T--){