[정올] Language Coder_출력_자가진단6_code506 (C/C++/Python)

두비니

·

2020. 3. 7. 15:22

 

 

 

1. C

#include <stdio.h>

int main() {
	printf("My height\n");
	printf("170\n");
	printf("My weight\n");
	printf("%f", 68.6);

	return 0;
}

 

 

 

 

2. C++

#include <iostream>
using namespace std;

int main() {
	cout << "My height" << endl;
	cout << "170" << endl;
	cout << "My weight" << endl;
    
    	cout << fixed;
	cout.precision(6);
	cout << 68.6 << endl; 		//소수점 출력하는 방법

	return 0;
}

 

사실 마지막 소수점 출력하는 부분은 저렇게 출력하기보다는 cout << fixed전에 변수에다가 값을 넣고 출력시킵니다.

그냥 귀찮아서 바로 때려박은거....ㅎ

 

 

 

3. Python3

print("My height")
print("170")
print("My weight")
print("%.6f" % 68.6)