11/15 s사칙연산
C
#include <stdio.h>
//함수 선언
void numprint(int num1, int num2);
int main() {
numprint(10, 20);
numprint(40, 5);
numprint(24, 90);
}
void numprint(int num1, int num2){
printf("num1은 %d이고, num2는 %d입니다.\n", num1, num2);
}
Output
Embed on website
To embed this program on your website, copy the following code and paste it into your website's HTML:
Comments
This comment belongs to a banned user and is only visible to admins.
This comment belongs to a deleted user and is only visible to admins.